-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.34 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
{
"name": "node-skeleton",
"version": "0.2.0",
"description": "Node Skeleton",
"scripts": {
"start": "node src/index.js",
"lint": "node_modules/.bin/eslint src/ tests/",
"test": "NODE_ENV=test node_modules/.bin/_mocha tests/**/*.js",
"cover": "NODE_ENV=test node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha tests/**/*.js"
},
"repository": {
"type": "git",
"url": "git://github.com/rajatvig/node-skeleton.git"
},
"author": "Rajat Vig",
"license": "ISC",
"bugs": {
"url": "https://github.com/rajatvig/node-skeleton.git/issues"
},
"homepage": "https://github.com/rajatvig/node-skeleton.git#readme",
"dependencies": {
"body-parser": "^1.15.2",
"codecov": "^1.0.1",
"convict": "^1.4.0",
"cors": "^2.7.1",
"dotenv": "^2.0.0",
"errorhandler": "^1.4.3",
"express": "^4.14.0",
"express-winston": "^2.0.0",
"node-uuid": "^1.4.7",
"rx": "^4.1.0",
"swagger-jsdoc": "^1.3.1",
"swagger-tools": "^0.10.1",
"uuid": "^2.0.2",
"winston": "^2.2.0"
},
"devDependencies": {
"chai": "^3.5.0",
"eslint": "^3.3.1",
"eslint-config-standard": "^5.3.5",
"eslint-plugin-promise": "^2.0.1",
"eslint-plugin-standard": "^2.0.0",
"istanbul": "^0.4.4",
"mocha": "^3.0.2",
"sinon": "^1.17.5",
"sinon-chai": "^2.8.0",
"supertest": "^2.0.0"
}
}