-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
54 lines (54 loc) · 1.29 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
{
"name": "mobx-rest-jquery-adapter",
"version": "1.1.0",
"description": "jQuery adapter for mobx-rest",
"repository": {
"type": "git",
"url": "[email protected]:masylum/mobx-rest-jquery-adapter.git"
},
"license": "MIT",
"jest": {
"testRegex": "/__tests__/.*\\.spec\\.js$"
},
"standard": {
"parser": "babel-eslint",
"globals": [
"it",
"describe",
"beforeEach",
"expect",
"Class",
"jest",
"FormData",
"File"
]
},
"dependencies": {
"jquery": "3.4.0",
"lodash": "4.17.19"
},
"devDependencies": {
"babel-cli": "6.10.1",
"babel-core": "6.10.4",
"babel-eslint": "7.1.1",
"babel-jest": "18.0.0",
"babel-plugin-transform-flow-strip-types": "6.8.0",
"babel-polyfill": "6.9.1",
"babel-preset-es2015": "6.3.13",
"babel-preset-stage-1": "6.5.0",
"babel-register": "6.9.0",
"flow-bin": "0.38.0",
"jest": "18.1.0",
"snazzy": "6.0.0",
"standard": "8.6.0"
},
"main": "lib",
"scripts": {
"compile": "./node_modules/.bin/babel src --out-dir lib",
"prepublish": "npm run compile",
"jest": "BABEL_ENV=test NODE_PATH=src jest --no-cache",
"lint": "standard --verbose | snazzy",
"flow": "flow",
"test": "npm run flow && npm run lint && npm run jest"
}
}