-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 1.06 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
{
"name": "nodejs-boilerplate",
"version": "1.0.0",
"description": "Organisation-level boilerplate for JavaScript (Node.js) projects.",
"main": "src/index.js",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --config jest.coverage.js",
"test:coverage:watch": "jest --watchAll --config jest.coverage.js",
"lint": "eslint .",
"doc": "jsdoc -t node_modules/clean-jsdoc-theme -d docs src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TheCodingDen/javascript-boilerplate.git"
},
"author": "The Coding Den",
"license": "MIT",
"bugs": {
"url": "https://github.com/TheCodingDen/javascript-boilerplate/issues"
},
"homepage": "https://github.com/TheCodingDen/javascript-boilerplate#readme",
"devDependencies": {
"clean-jsdoc-theme": "^3.3.3",
"eslint": "^8.10.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"jest": "^27.5.1",
"jsdoc": "^3.6.10"
}
}