-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
76 lines (76 loc) · 2.23 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "js-data-express",
"description": "Generate Express.js-compatible route middleware for JSData models.",
"version": "1.0.1",
"homepage": "https://github.com/js-data/js-data-express",
"repository": {
"type": "git",
"url": "https://github.com/js-data/js-data-express.git"
},
"author": "js-data-express project authors",
"license": "MIT",
"main": "./dist/js-data-express.js",
"files": [
"dist/",
"src/",
"AUTHORS",
"CONTRIBUTORS"
],
"keywords": [
"express",
"jsdata"
],
"standard": {
"parser": "babel-eslint",
"globals": [
"beforeEach",
"after",
"describe",
"it"
],
"ignore": [
"dist/"
]
},
"scripts": {
"doc": "jsdoc -c conf.json src",
"lint": "standard '**/*.js'",
"bundle": "rollup src/index.js -c -o dist/js-data-express.js -m dist/js-data-express.js.map -f cjs && repo-tools write-version dist/js-data-express.js",
"build": "npm run lint && npm run bundle",
"mocha": "mocha --recursive -t 30000 -R dot -r babel-core/register -r babel-polyfill",
"cover": "nyc --require babel-core/register --require babel-polyfill --cache mocha --recursive -t 20000 -R dot && nyc report --reporter=html",
"test": "npm run build && npm run cover",
"release": "npm test && npm run doc && repo-tools changelog && repo-tools authors"
},
"dependencies": {
"body-parser": "1.18.1",
"express": "4.15.4",
"js-data": ">=3.0.0"
},
"peerDependencies": {
"body-parser": "1.18.1",
"express": "4.15.4",
"js-data": ">=3.0.0"
},
"devDependencies": {
"babel-core": "6.26.0",
"babel-eslint": "8.0.0",
"babel-plugin-external-helpers": "6.22.0",
"babel-plugin-syntax-async-functions": "6.13.0",
"babel-plugin-transform-regenerator": "6.26.0",
"babel-polyfill": "6.26.0",
"babel-preset-es2015": "6.24.1",
"chai": "4.1.2",
"ink-docstrap": "git+https://github.com/js-data/docstrap.git#cfbe45fa313e1628c493076d5e15d2b855dfbf2c",
"js-data-repo-tools": "1.0.0",
"jsdoc": "3.5.5",
"mocha": "3.5.3",
"node-mocks-http": "1.6.4",
"nyc": "11.2.1",
"rollup": "0.49.3",
"rollup-plugin-babel": "3.0.2",
"sinon": "3.2.1",
"standard": "10.0.3",
"supertest": "3.0.0"
}
}