-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 810 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 810 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
{
"name": "principles_of_package_design",
"version": "1.0.0",
"description": "Repository that contains code in node.js from the book Principles of Package Design by Matthias Noback",
"repository": {
"type": "git",
"url": "git+https://github.com/devcorpio/principles-of-package-design.git"
},
"keywords": [],
"author": "devcorpio",
"license": "MIT",
"bugs": {
"url": "https://github.com/devcorpio/principles-of-package-design/issues"
},
"homepage": "https://github.com/devcorpio/principles-of-package-design#readme",
"devDependencies": {
"husky": "^1.3.1",
"prettier": "^1.16.4",
"pretty-quick": "^1.10.0"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}