forked from mate-academy/js_generate-zero-function
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 770 Bytes
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 770 Bytes
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
{
"name": "generage-zero-function",
"version": "1.0.0",
"description": "Generate Zero function",
"main": "src/generateZeroFunction.js",
"scripts": {
"test": "jest",
"lint": "eslint **/*.js"
},
"author": "Mate academy",
"license": "MIT",
"devDependencies": {
"@mate-academy/eslint-config": "^0.0.5",
"eslint": "^5.16.0",
"eslint-plugin-jest": "^22.4.1",
"eslint-plugin-node": "^8.0.1",
"husky": "^1.3.1",
"jest": "^24.7.0",
"lint-staged": "^8.1.5"
},
"lint-staged": {
"linters": {
"*.js": [
"eslint",
"git add"
]
}
},
"husky": {
"hooks": {
"post-commit": "git update-index --again",
"pre-commit": "lint-staged",
"pre-push": "npm run test"
}
}
}