-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
30 lines (30 loc) · 979 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{
"name": "cffdrs",
"version": "0.1.0",
"description": "Canadian Forest Fire Danger Rating System (CFFDRS)",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc --build",
"lint": "eslint \"**/*.ts\" --ignore-pattern node_modules/",
"lint:fix": "eslint \"**/*.ts\" --fix --ignore-pattern node_modules/",
"format": "prettier --write \"src/**/*.ts\"",
"prepare" : "npm run build",
"prepublishOnly" : "npm test && npm run lint",
"preversion" : "npm run lint",
"version" : "npm run format && git add -A src",
"postversion" : "git push && git push --tags"
},
"keywords": ["cffdrs"],
"author": "",
"license": "GPL-2",
"files": ["lib/**/*"],
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.54.1",
"@typescript-eslint/parser": "^5.54.1",
"eslint": "^8.35.0",
"prettier": "^2.8.4",
"typescript": "^4.9.5"
}
}