forked from amplitude/redux-query
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 3.02 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
79
80
81
82
83
84
85
86
{
"name": "redux-query",
"version": "2.3.0",
"description": "A library for querying and managing network state in React/Redux applications",
"homepage": "https://github.com/amplitude/redux-query",
"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:site": "cd site && npm run build",
"build:examples": "cd examples/async && npm run build",
"build": "npm run build:commonjs && npm run build:es && npm run build:umd && npm run build:site && npm run build:examples",
"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",
"deploy": "gh-pages -d site/build",
"prebuild": "npm run lint",
"predeploy": "npm run build:site",
"lint": "eslint src test --fix",
"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.pick": "^4.4.0",
"lodash.pickby": "^4.6.0",
"lodash.values": "^4.3.0",
"prop-types": "^15.5.6",
"superagent": "^3.5.1"
},
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0-0 || ^16.0.0-rc",
"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-prettier": "^2.0.1",
"eslint-plugin-react": "^6.1.1",
"gh-pages": "^0.12.0",
"mocha": "^2.4.5",
"nyc": "^10.0.0",
"prettier": "^1.3.1",
"react": "^16.0.0",
"rimraf": "^2.4.3",
"superagent-mock": "^3.3.0",
"webpack": "^1.9.6"
}
}