-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
44 lines (44 loc) · 973 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
33
34
35
36
37
38
39
40
41
42
43
44
{
"name": "captain-whisker",
"version": "1.0.4",
"description": "JSON view templating for node.js REST APIs",
"homepage": "https://github.com/upmc-enterprises/captain-whisker",
"main": "src/index.js",
"scripts": {
"lint": "eslint .",
"test": "jest",
"watch": "jest --watch"
},
"repository": {
"type": "git",
"url": "[email protected]:upmc-enterprises/captain-whisker.git"
},
"author": "John Reiter <[email protected]>",
"license": "MIT",
"devDependencies": {
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^3.0.9",
"jest": "^27.0.0",
"lint-staged": "^11.2.6",
"prettier": "^2.4.0"
},
"dependencies": {
"glob": "^7.1.2",
"handlebars": "^4.7.3"
},
"lint-staged": {
"*.js": [
"eslint --fix"
],
"*.md": [
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}