-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 829 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 829 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{
"name": "nodejs-seed",
"version": "0.0.1",
"description": "Node.js seed project",
"license": "MIT",
"repository": "wolfika/nodejs-seed",
"author": {
"name": "Máté Farkas",
"email": "info@wolfika.eu",
"url": "https://github.com/wolfika"
},
"engines": {
"node": ">=13"
},
"scripts": {
"coverage": "nyc report && codecov",
"lint": "eslint index.js",
"start": "node -r dotenv/config index.js",
"test": "npm run lint && nyc ava"
},
"husky": {
"hooks": {
"pre-push": "npm run test"
}
},
"nyc": {
"reporter": [
"lcov",
"text"
]
},
"dependencies": {},
"devDependencies": {
"ava": "^3.5.1",
"codecov": "^3.7.1",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-prettier": "^3.1.2",
"husky": "^4.2.3",
"nyc": "^15.0.0",
"prettier": "^2.0.2"
}
}