-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.28 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
{
"name": "template-nodejs",
"version": "1.0.0",
"description": "A template for Node.js projects",
"main": "src/index.js",
"dependencies": {
"body-parser": "^1.17.1",
"cookie-parser": "^1.4.3",
"ejs": "^2.5.6",
"express": "^4.15.2",
"locale": "^0.1.0",
"mysql": "^2.13.0"
},
"devDependencies": {
"eslint": "^3.19.0",
"eslint-config-google": "^0.7.1",
"eslint-plugin-jsdoc": "^3.0.2",
"eslint-plugin-mocha": "^4.9.0",
"eslint-plugin-node": "^4.2.2",
"express": "^4.15.2",
"istanbul": "^0.4.5",
"jsdoc": "^3.4.3",
"mocha": "^3.3.0",
"mocha-eslint": "^3.0.1"
},
"scripts": {
"start": "node ./src/index.js",
"test": "mocha ./src -name *.test.js --recursive",
"coverage": "istanbul cover _mocha ./src -name *.test.js -- -R spec",
"clean": "rm -rf coverage; rm -rf out",
"refresh": "rm -rf node_modules; npm install",
"jsdoc": "jsdoc src/ -r"
},
"repository": {
"type": "git",
"url": "git+https://[email protected]/gerarts/template-nodejs.git"
},
"keywords": [
"template"
],
"author": "Paul Gerarts <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/gerarts/template-nodejs/issues"
},
"homepage": "https://github.com/gerarts/template-nodejs#readme"
}