-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1000 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
{
"name": "make-webhooks",
"version": "1.1.4",
"description": "Run make targets through webhooks",
"repository": "https://github.com/expelledboy/make-webhooks",
"author": "expelledboy",
"license": "Apache-2.0",
"main": "src/server.js",
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-prettier": "^3.1.2",
"husky": "^4.3.8",
"lint-staged": "^10.0.8",
"nodemon": "^2.0.20",
"prettier": "^1.19.1"
},
"dependencies": {
"express": "^4.18.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm run lint"
}
},
"lint-staged": {
"{src|test}/**/*.js": [
"npm run lint:fix",
"git add"
]
},
"scripts": {
"start": "node src/server.js",
"dev": "MAKE_DIR=$PWD nodemon src/server.js",
"lint": "eslint src",
"lint:fix": "npm run lint -- --fix"
}
}