-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
81 lines (81 loc) · 2.39 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
77
78
79
80
81
{
"name": "js-data-adapter",
"description": "Base adapter class that all other js-data adapters extend.",
"version": "1.0.1",
"homepage": "https://github.com/js-data/js-data-adapter",
"repository": {
"type": "git",
"url": "https://github.com/js-data/js-data-adapter.git"
},
"author": "js-data-adapter project authors",
"license": "MIT",
"main": "./dist/js-data-adapter.js",
"typings": "./dist/js-data-adapter.d.ts",
"files": [
"dist/",
"src/",
"test/",
"AUTHORS",
"CONTRIBUTORS",
"typings.json"
],
"keywords": [
"js-data",
"jsdata",
"adapter"
],
"standard": {
"parser": "babel-eslint",
"globals": [
"Mocha",
"describe",
"sinon",
"it",
"before",
"after",
"beforeEach",
"afterEach",
"assert"
],
"ignore": [
"dist/"
]
},
"scripts": {
"lint": "standard lint '**/*.js'",
"bundle_adapter": "rollup src/index.js -c -o dist/js-data-adapter.js -m dist/js-data-adapter.js.map -f umd",
"bundle_tests": "rollup test/index.js -c rollup-tests.config.js -o dist/js-data-adapter-tests.js -m dist/js-data-adapter-tests.js.map -f umd",
"bundle": "npm run bundle_adapter && npm run bundle_tests",
"watch": "watch \"npm run bundle\" src/",
"build": "npm run lint && npm run bundle",
"mocha": "mocha -t 2000 -R dot mocha.start.js -r babel-core/register -r babel-polyfill",
"cover": "nyc --require babel-core/register --require babel-polyfill --cache mocha mocha.start.js -t 2000 -R dot && nyc report --reporter=html",
"test": "npm run build && npm run cover",
"release": "npm test && repo-tools updates && repo-tools changelog && repo-tools authors"
},
"peerDependencies": {
"js-data": ">= 3.0.0"
},
"dependencies": {
"js-data": ">= 3.0.0"
},
"devDependencies": {
"babel-core": "6.25.0",
"babel-eslint": "7.2.3",
"babel-plugin-external-helpers": "6.22.0",
"babel-plugin-syntax-async-functions": "6.13.0",
"babel-plugin-transform-es2015-modules-umd": "6.24.1",
"babel-plugin-transform-regenerator": "6.24.1",
"babel-polyfill": "6.23.0",
"babel-preset-es2015": "6.24.1",
"babel-preset-stage-0": "6.24.1",
"js-data-repo-tools": "1.0.0",
"nyc": "11.0.3",
"rollup": "0.43.0",
"rollup-plugin-babel": "2.7.1",
"standard": "10.0.2",
"sinon": "^2.3.6",
"chai": "^4.0.2",
"mocha": "^3.4.2"
}
}