-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
55 lines (55 loc) · 1.26 KB
/
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
45
46
47
48
49
50
51
52
53
54
55
{
"name": "node-template",
"version": "1.0.0",
"author": "",
"description": "",
"keywords": [],
"main": "index.js",
"scripts": {
"start": "node index.js",
"test": "echo \"Tests passed\" && exit 0",
"prettify": "prettier --write",
"prettify:all": "prettier --write \"./**/*.{js,json}\"",
"lint": "eslint",
"lint:all": "eslint \"**/*.js\""
},
"engines": {
"node": ">=12.0.0"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^25.3.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-jest": "^23.8.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.3",
"husky": "^4.2.5",
"lint-staged": "^10.1.4",
"prettier": "^2.0.4"
},
"lint-staged": {
"*.js": [
"npm run prettify",
"npm run lint"
],
"*.json": [
"npm run prettify"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/emirotin/node-template.git"
},
"bugs": {
"url": "https://github.com/emirotin/node-template/issues"
},
"homepage": "https://github.com/emirotin/node-template#readme"
}