forked from masylum/mobx-rest-fetch-adapter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.92 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
{
"name": "mobx-rest-fetch-adapter",
"version": "0.1.3",
"description": "fetch adapter for mobx-rest",
"repository": {
"type": "git",
"url": "[email protected]:masylum/mobx-rest-fetch-adapter.git"
},
"license": "MIT",
"jest": {
"testRegex": "/__tests__/.*\\.spec\\.js$"
},
"standard": {
"parser": "babel-eslint",
"globals": [
"it",
"describe",
"beforeEach",
"expect",
"Class",
"jest"
]
},
"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-plugin-transform-object-rest-spread": "6.23.0",
"babel-polyfill": "^6.9.1",
"babel-preset-es2015": "^6.3.13",
"babel-register": "^6.9.0",
"flow-bin": "^0.38.0",
"flow-copy-source": "^1.1.0",
"husky": "^0.13.4",
"jest": "^18.1.0",
"jest-fetch-mock": "^1.0.8",
"prettier-standard": "^5.0.0",
"snazzy": "^6.0.0",
"standard": "^8.6.0",
"rimraf": "^2.6.1"
},
"main": "lib",
"scripts": {
"build:clean": "rimraf lib",
"build:lib": "./node_modules/.bin/babel -d lib src --ignore '**/__tests__/**'",
"build:flow": "flow-copy-source -v -i '**/__tests__/**' src lib",
"build": "npm run build:clean && npm run build:lib && npm run build:flow",
"prepublish": "npm run build",
"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",
"format": "prettier-standard --print-width 60 \"{src,__tests__}/**/*.js\"",
"prepush": "npm test",
"lint-staged": {
"linters": {
"{src|__tests__}/**/*.js": [
"prettier-standard",
"git add"
]
}
}
},
"dependencies": {
"lodash.merge": "^4.6.0",
"fetch-ponyfill": "^4.0.0",
"qs": "^6.4.0"
}
}