-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
48 lines (48 loc) · 1.02 KB
/
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "pm10",
"version": "2.0.2",
"author": "Deojeff Lai",
"main": "lib/src/index.js",
"scripts": {
"build": "tsc",
"dev": "yarn build && node ./lib/test/main.js"
},
"repository": {
"type": "git",
"url": "https://github.com/d30jeff/pm10"
},
"keywords": [
"pm10",
"Malaysia"
],
"types": "lib/src/index.d.ts",
"license": "MIT",
"private": false,
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.40.1",
"@typescript-eslint/parser": "^5.40.1",
"eslint": "^8.28.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-mocha": "^9.0.0",
"eslint-plugin-prettier": "^3.4.1",
"prettier": "^2.8.0",
"typescript": "^4.9.3"
},
"optionalDependencies": {
"husky": "^4.2.5",
"jest": "^27.2.4",
"lint-staged": "^10.2.11"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix"
]
}
}