-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 loc) · 1.25 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
{
"name": "path18",
"version": "1.0.0",
"description": "",
"main": "start_server.js",
"scripts": {
"start": "node src/start_server.js",
"devStart": "nodemon src/start_server.js",
"test": "nyc mocha ./tests/test.js",
"coverage": "nyc report ./tests/test.js && codecov -t fc85aebd-192d-49b9-af6c-0cb738d73b21",
"precommit-msg": "echo 'Pre-commit checks...' && exit 0",
"lint": "node_modules/.bin/semistandard | node_modules/.bin/snazzy"
},
"semistandard": {
"globals": [
"describe",
"it"
]
},
"pre-commit": [
"precommit-msg",
"lint"
],
"repository": {
"type": "git",
"url": "git+https://github.com/facn2/Path18.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/facn2/Path18/issues"
},
"homepage": "https://github.com/facn2/Path18#readme",
"devDependencies": {
"chai": "^4.1.2",
"codecov": "^2.3.0",
"mocha": "^4.0.0",
"nodemon": "^1.12.1",
"nyc": "^11.2.1",
"pre-commit": "^1.2.2",
"semistandard": "^11.0.0",
"snazzy": "^7.0.0"
},
"dependencies": {
"env2": "^2.2.0",
"express": "^4.16.1",
"express-handlebars": "^3.0.0",
"mongodb": "^2.2.31",
"mongoose": "^4.12.0"
}
}