-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 935 Bytes
/
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
{
"//1": "describes your app and its dependencies",
"//2": "https://docs.npmjs.com/files/package.json",
"//3": "updating this file will download and update your packages",
"name": "my-glitch-app",
"version": "0.0.1",
"description": "What am I about?",
"main": "server.js",
"scripts": {
"start": "node server.js",
"test": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"
},
"dependencies": {
"express": "^4.15.2"
},
"devDependencies": {
"mocha": "^3.2.0",
"chai": "^3.5.0",
"chai-http": "^3.0.0",
"coveralls": "^2.12.0",
"mocha-lcov-reporter": "^1.2.0",
"istanbul": "^0.4.5"
},
"engines": {
"node": "6.9.x"
},
"repository": {
"url": "https://github.com/f0zi/test"
},
"license": "MIT",
"keywords": [
"node",
"glitch",
"express",
"mocha",
"chai",
"coveralls"
]
}