-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.11 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
{
"name": "jsonscript-express",
"version": "0.5.0",
"description": "Express middleware for batch processing using JSONScript",
"main": "index.js",
"scripts": {
"test": "npm run eslint && npm run test-cov",
"test-spec": "mocha spec/*.spec.js -R spec",
"test-cov": "istanbul cover -x 'spec/**' node_modules/mocha/bin/_mocha -- spec/*.spec.js -R spec",
"eslint": "eslint index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JSONScript/jsonscript-express.git"
},
"keywords": [
"JSONScript",
"express",
"batch",
"middleware"
],
"author": "Evgeny Poberezkin",
"license": "MIT",
"bugs": {
"url": "https://github.com/JSONScript/jsonscript-express/issues"
},
"homepage": "https://github.com/JSONScript/jsonscript-express#readme",
"dependencies": {
"jsonscript-js": "^0.5.0",
"lodash": "^4.11.1",
"supertest": "^1.2.0"
},
"devDependencies": {
"body-parser": "^1.15.0",
"coveralls": "^2.11.9",
"eslint": "^2.8.0",
"express": "^4.13.4",
"istanbul": "^0.4.3",
"mocha": "^2.4.5",
"pre-commit": "^1.1.2"
}
}