This repository has been archived by the owner on Jan 20, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.51 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": "project-template-node",
"version": "0.0.1",
"description": "Template for NodeJS projects",
"main": "src/index.js",
"engines": {
"node": ">=8.12.0"
},
"scripts": {
"lint": "eslint '**/*.js'",
"test": "nyc --reporter=text ava",
"docs": "(cd src && npx docco -o ../docs index.js)",
"docs:watch": "chokidar src/index.js -c 'npm run docs'",
"docs:serve": "browser-sync start -s docs -w 'docs/**/*'",
"docs:write": "run-p docs:watch docs:serve",
"release": "np"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rhumaric/project-template-node.git"
},
"author": "Romaric Pascal <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/rhumaric/project-template-node/issues"
},
"homepage": "https://github.com/rhumaric/project-template-node#readme",
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"ava": "^3.5.0",
"browser-sync": "^2.26.7",
"chokidar-cli": "^2.1.0",
"docco": "^0.8.0",
"eslint": "^6.8.0",
"eslint-config-defaults": "^9.0.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-prettier": "^3.1.2",
"express": "^4.17.1",
"husky": "^3.1.0",
"lint-staged": "^9.5.0",
"np": "^6.2.0",
"npm-run-all": "^4.1.5",
"nyc": "^14.1.1",
"prettier": "^1.18.2",
"supertest": "^4.0.2"
},
"dependencies": {},
"ava": {
"files": [
"**/*.test.js"
]
}
}