forked from Avaq/node-server-skeleton
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.9 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
52
53
54
55
{
"name": "node-server-skeleton",
"version": "0.1.0",
"description": "The starting point for a modern Node server application",
"main": "src/index.js",
"repository": "https://github.com/Avaq/node-server-skeleton.git",
"scripts": {
"start": "node_modules/.bin/babel-node ./",
"dev": "DEBUG=* node_modules/.bin/babel-node node_modules/.bin/node-dev ./",
"lint": "node_modules/.bin/eslint ./src ./test",
"pretest": "npm run lint",
"test": "npm run version && npm run clean && npm run test:unit && npm run test:integration",
"test:unit": "NODE_ENV=test node_modules/.bin/babel-node node_modules/.bin/isparta cover --root ./src --report text --report html test/index.js -- test/unit",
"test:integration": "NODE_ENV=test node_modules/.bin/babel-node test/index.js test/integration",
"setup": "npm run version && npm install && npm run test:unit && npm outdated",
"clean": "node_modules/.bin/rimraf npm-debug.log coverage",
"version": "node check-version 5.3.0"
},
"engines": {
"node": "^5.3.0"
},
"author": "Aldwin Vlasblom <[email protected]> (https://github.com/Avaq)",
"license": "MIT",
"dependencies": {
"babel-cli": "^6.3.17",
"babel-preset-es2015": "^6.3.13",
"babel-preset-stage-2": "^6.3.13",
"config": "^1.16.0",
"crypto-md5": "^1.0.0",
"debug": "^2.2.0",
"executive-user": "^1.0.0",
"express": "^4.13.3",
"glob": "^6.0.2",
"http-errors": "^1.3.1",
"mz": "^2.0.0",
"ramda": "^0.19.0",
"ramda-fantasy": "^0.4.1",
"sanctuary": "^0.7.1",
"tcomb": "^2.5.2",
"tcomb-validation": "^2.2.0"
},
"devDependencies": {
"babel-eslint": "^5.0.0-beta6",
"chai": "^3.4.0",
"eslint": "^1.7.3",
"glob": "^5.0.15",
"isparta": "^4.0.0",
"mocha": "^2.3.3",
"node-dev": "^2.7.1",
"rimraf": "^2.4.3",
"sinon": "^1.17.2",
"sinon-chai": "^2.8.0",
"supertest": "^1.1.0"
}
}