forked from masylum/mobx-rest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.25 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
{
"name": "mobx-rest",
"version": "0.0.12",
"description": "REST conventions for mobx.",
"repository": {
"type": "git",
"url": "[email protected]:masylum/mobx-rest.git"
},
"license": "MIT",
"dependencies": {
"jquery": "^3.1.0",
"lodash.difference": "^4.3.0",
"lodash.last": "^3.0.0",
"lodash.without": "^4.2.0",
"node-uuid": "^1.4.7",
"mobx": "^2.3.2"
},
"standard": {
"parser": "babel-eslint"
},
"devDependencies": {
"babel-cli": "^6.10.1",
"babel-core": "^6.10.4",
"babel-eslint": "^6.1.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"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.28.0",
"mocha": "^2.3.4",
"sinon": "^1.17.4",
"snazzy": "^4.0.0",
"standard": "^7.1.2"
},
"main": "lib",
"scripts": {
"compile": "./node_modules/.bin/babel src --out-dir lib",
"prepublish": "npm run compile",
"unit": "./node_modules/mocha/bin/mocha test/* --require babel-core/register",
"lint": "standard --verbose | snazzy",
"flow": "flow",
"test": "npm run flow && npm run lint && npm run unit"
}
}