forked from amplitude/redux-query
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.69 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
{
"name": "@crossfield/redux-query",
"version": "1.4.1-0",
"description": "A library for querying and managing network state in React/Redux applications",
"main": "dist/commonjs/index.js",
"module": "dist/es/index.js",
"jsnext:main": "dist/es/index.js",
"scripts": {
"build:commonjs": "npm run clean:commonjs && cross-env NODE_ENV=production cross-env BABEL_ENV=commonjs babel src --out-dir dist/commonjs --ignore examples/,test/",
"build:es": "npm run clean:es && cross-env NODE_ENV=production cross-env BABEL_ENV=es babel src --out-dir dist/es --ignore examples/,test/",
"build:umd": "npm run clean:umd && cross-env NODE_ENV=production webpack --config webpack.config.js --bail",
"build": "npm run build:commonjs && npm run build:es && npm run build:umd",
"clean:commonjs": "rimraf dist/commonjs",
"clean:coverage": "rimraf coverage",
"clean:es": "rimraf dist/es",
"clean:umd": "rimraf dist/umd",
"clean": "npm run clean:commonjs && npm run clean:es && npm run clean:umd",
"coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"prepublish": "npm run lint && npm run test && npm run build",
"lint": "eslint src test",
"test:cov": "cross-env NODE_ENV=test nyc npm test",
"test": "mocha --compilers js:babel-core/register --reporter spec test/**/*.test.js"
},
"repository": {
"type": "git",
"url": "https://github.com/amplitude/redux-query.git"
},
"keywords": [
"redux",
"react",
"query",
"fetch",
"REST"
],
"author": "Ryan Ashcraft <[email protected]>",
"license": "MIT",
"dependencies": {
"backo": "^1.1.0",
"invariant": "^2.2.0",
"json-stable-stringify": "^1.0.0",
"lodash.difference": "^4.5.0",
"lodash.get": "^4.4.2",
"lodash.identity": "^3.0.0",
"lodash.includes": "^4.3.0",
"lodash.intersection": "^4.4.0",
"lodash.omit": "^4.5.0",
"lodash.partial": "^4.2.1",
"lodash.pickby": "^4.6.0",
"lodash.values": "^4.3.0",
"react-addons-shallow-compare": "^15.4.2",
"superagent": "^1.6.1"
},
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0-0",
"redux": "^2.0.0 || ^3.0.0"
},
"devDependencies": {
"babel-cli": "6.8.0",
"babel-core": "^6.5.1",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.2.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-2": "^6.22.0",
"chai": "^3.5.0",
"codecov": "^1.0.1",
"cross-env": "^1.0.7",
"eslint": "^3.3.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-react": "^6.1.1",
"mocha": "^2.4.5",
"nyc": "^10.0.0",
"react": "^15.0.1",
"rimraf": "^2.4.3",
"superagent-mock": "^1.10.0",
"webpack": "^1.9.6"
}
}