forked from digideskio/data-express
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.68 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
{
"name": "js-data-express",
"description": "Generate Express.js-compatible route middleware for JSData models.",
"version": "1.0.0-alpha.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/"
]
},
"babel": {
"presets": [
"es2015"
]
},
"scripts": {
"doc": "jsdoc -c conf.json src",
"lint": "repo-tools lint \"**/*.js\"",
"bundle": "rollup -c rollup.config.js -f cjs -o dist/js-data-express.js -m dist/js-data-express.js.map src/index.js && 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 updates && repo-tools changelog && repo-tools authors"
},
"peerDependencies": {
"js-data": "^3.0.0-beta.6"
},
"devDependencies": {
"express": "4.13.4",
"js-data-adapter": "0.7.3",
"js-data-repo-tools": "0.5.2",
"supertest": "1.2.0",
"body-parser": "1.15.1"
}
}