-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 806 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 806 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
{
"name": "gilded-rose",
"license": "MIT",
"version": "1.0.0",
"description": "Gilded Rose refactoring kata in JavaScript",
"keywords": [
"kata",
"refactor",
"gilded-rose"
],
"scripts": {
"lint": "eslint **/*.js",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:report": "jest --coverage && open coverage/lcov-report/index.html",
"test:all": "npm run lint && npm test"
},
"husky": {
"hooks": {
"pre-push": "npm run test:all"
}
},
"dependencies": {},
"devDependencies": {
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.3.0",
"eslint-plugin-jest": "^22.14.1",
"eslint-plugin-prettier": "^3.1.0",
"husky": "^2.7.0",
"jest": "^24.8.0",
"prettier": "^1.18.2"
}
}