This repository has been archived by the owner on Apr 25, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
62 lines (62 loc) · 1.76 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
56
57
58
59
60
61
62
{
"name": "PROJECT_NAME",
"version": "0.1.0",
"description": "PROJECT_DESCRIPTION",
"main": "index.js",
"repository": "PROJECT_REPOSITORY",
"scripts": {
"clean": "rimraf npm-debug.log coverage .nyc_output",
"lint": "eslint src test config",
"start": "NODE_ENV=development pm2-dev .",
"pm2": "pm2 start ecosystem.config.js && pm2 logs",
"pretest": "npm run clean && npm prune && nsp check && npm run lint",
"test": "nyc mocha --include src/**.js --opts test/mocha.opts test",
"coverage": "nyc report --reporter=lcov && opn ./coverage/lcov-report/index.html",
"coverage:codecov": "nyc report --reporter=text-lcov > coverage.lcov && codecov"
},
"engines": {
"node": ">=5.0.0"
},
"author": "PROJECT_AUTHOR",
"license": "MIT",
"dependencies": {
"bcrypt": "^1.0.1",
"body-parser": "^1.15.2",
"config": "^1.16.0",
"cookie-parser": "^1.4.3",
"express": "^4.13.3",
"fluture": "^6.2.3",
"fluture-sanctuary-types": "^1.2.0",
"http-errors": "^1.4.0",
"json5": "^0.5.0",
"jwt-simple": "^0.5.0",
"micromatch": "^3.0.2",
"momi": "^0.6.0",
"pm2": "^2.4.6",
"request": "^2.72.0",
"sanctuary": "^0.13.1",
"sanctuary-def": "^0.12.0",
"sanctuary-type-classes": "^6.0.0",
"semver": "^5.3.0",
"serialize-http-error": "^1.0.0",
"tcomb": "^3.0.0",
"tcomb-validation": "^3.0.0",
"winston": "^2.3.0"
},
"devDependencies": {
"chai": "^4.0.1",
"chai-things": "^0.2.0",
"codecov": "^2.2.0",
"eslint": "^4.2.0",
"eslint-config-warp": "^2.1.0",
"glob": "^7.0.0",
"mocha": "^3.1.2",
"nsp": "^2.3.0",
"nyc": "^11.0.1",
"opn-cli": "^3.1.0",
"rimraf": "^2.6.1",
"sinon": "^2.3.2",
"sinon-chai": "^2.10.0",
"supertest": "^3.0.0"
}
}