-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.19 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
{
"name": "js-data-adapter-tests",
"description": "Tests for js-data adapters.",
"version": "1.5.0",
"homepage": "https://github.com/js-data/js-data-adapter-tests",
"repository": {
"type": "git",
"url": "https://github.com/js-data/js-data-adapter-tests.git"
},
"author": "Jason Dobry <[email protected]> (http://www.pseudobry.com)",
"license": "MIT",
"main": "./dist/js-data-adapter-tests.js",
"keywords": [
"js-data",
"adapter",
"test"
],
"scripts": {
"lint": "standard src/**/*.js",
"bundle": "webpack --config webpack.config.js",
"test": "npm run lint && npm run bundle"
},
"standard": {
"parser": "babel-eslint",
"globals": [
"Mocha",
"describe",
"it",
"before",
"after",
"beforeEach",
"afterEach",
"assert"
]
},
"devDependencies": {
"babel-core": "6.5.2",
"babel-eslint": "5.0.0",
"babel-loader": "6.2.3",
"babel-plugin-syntax-async-functions": "6.5.0",
"babel-plugin-transform-regenerator": "6.5.2",
"babel-polyfill": "6.5.0",
"babel-preset-es2015": "6.5.0",
"babel-preset-stage-0": "6.5.0",
"standard": "6.0.5",
"webpack": "1.12.13"
}
}