forked from staticdeploy/convexpress
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.45 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
{
"name": "convexpress",
"version": "1.4.0",
"description": "Employ conventions to register express routes",
"main": "lib/convexpress.js",
"scripts": {
"build": "babel src --out-dir lib",
"clean": "rimraf lib coverage",
"coverage": "NODE_ENV=test babel-node $(npm bin)/isparta cover $(npm bin)/_mocha -- --recursive",
"codecov": "codecov",
"dev": "npm test -- --watch",
"lint": "eslint src test",
"prepublish": "npm run build",
"test": "NODE_ENV=test mocha --compilers js:babel-core/register --recursive"
},
"author": "Paolo Scanferla <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/staticdeploy/convexpress.git"
},
"bugs": {
"url": "https://github.com/staticdeploy/convexpress/issues"
},
"devDependencies": {
"babel": "^6.5.2",
"babel-cli": "^6.7.7",
"babel-core": "^6.7.7",
"babel-eslint": "^6.0.4",
"babel-plugin-rewire": "^1.0.0-rc-2",
"babel-preset-es2015": "^6.6.0",
"babel-preset-stage-0": "^6.5.0",
"chai": "^3.5.0",
"codecov": "^1.0.1",
"eslint": "^2.8.0",
"isparta": "^4.0.0",
"mocha": "^2.4.5",
"ramda": "^0.21.0",
"sinon": "^1.17.3",
"sinon-chai": "^2.8.0",
"supertest": "^1.2.0",
"supertest-as-promised": "^3.1.0"
},
"dependencies": {
"ajv": "^4.0.4",
"body-parser": "^1.15.0",
"express": "^4.13.4",
"ramda": "^0.21.0",
"type-is": "^1.6.12"
}
}