-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
42 lines (42 loc) · 971 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
40
41
42
{
"name": "assertible-nodejs-example",
"version": "1.0.0",
"description": "A continuous integration, delivery, and testing example for a Node.js app",
"main": "index.js",
"scripts": {
"test": "mocha test/index.js",
"start": "node index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/assertible/nodejs-example.git"
},
"engines": {
"node": "4.0.0"
},
"keywords": [
"ci",
"continuous",
"delivery",
"continuous",
"testing",
"assertible"
],
"author": "Cody Reichert",
"contributors": [
"Christopher Reichert <[email protected]>",
"Assertible <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/assertible/nodejs-example/issues"
},
"homepage": "https://github.com/assertible/nodejs-example#readme",
"dependencies": {
"express": "^4.15.2"
},
"devDependencies": {
"mocha": "^3.2.0",
"supertest": "^3.0.0"
}
}