-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
32 lines (32 loc) · 937 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
31
32
{
"name": "the_art_of_unit_testing",
"version": "1.0.0",
"description": "Repository that contains code in javascript from the book The Art of Unit Testing, Second Edition by Roy Osherove",
"repository": {
"type": "git",
"url": "git+https://github.com/devcorpio/the-art-of-unit-testing.git"
},
"scripts": {
"test": "jest"
},
"keywords": [],
"author": "devcorpio",
"license": "MIT",
"bugs": {
"url": "https://github.com/devcorpio/the-art-of-unit-testing/issues"
},
"homepage": "https://github.com/devcorpio/the-art-of-unit-testing#readme",
"devDependencies": {
"@types/node": "^10.12.18",
"axios": "^0.18.0",
"husky": "^1.3.1",
"jest": "^23.6.0",
"prettier": "1.15.3",
"pretty-quick": "^1.8.0"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}