-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.74 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": "template-node-js-project",
"version": "1.0.0",
"description": "Template simple node.js application",
"main": "index.js",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"lint": "npm-run-all --parallel lint:*",
"lint-fix": "npm-run-all --parallel fix:*",
"lint:js": "eslint 'lib/**/*.js'",
"fix:js": "npm run lint:js -- --fix",
"lint-md": "prettier \"**/*.md\"",
"lint:md": "npm run lint-md -- --check",
"fix:md": "npm run lint-md -- --write",
"pre-push": "npm-run-all lint test",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vidhill/template-node-js-project.git"
},
"keywords": [],
"author": "David Hill",
"license": "MIT",
"bugs": {
"url": "https://github.com/vidhill/template-node-js-project/issues"
},
"homepage": "https://github.com/vidhill/template-node-js-project#readme",
"devDependencies": {
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-vidhill": "^3.0.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-unicorn": "^46.0.0",
"husky": "^8.0.3",
"jest": "^29.5.0",
"jest-junit": "^15.0.0",
"jest-tobetype": "^1.2.3",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.7",
"rimraf": "^4.4.1"
},
"jest-junit": {
"outputDirectory": "jest-report",
"outputName": "junit.xml"
},
"engines": {
"node": ">=12"
}
}