forked from amplitude/redux-query
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.9 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) · 2.9 KB
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
{
"name": "@digitalwing.co/redux-query-immutable",
"version": "2.4.13",
"description": "A fork of redux-query with support for ImmutableJS",
"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",
"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/DigWing/redux-query-immutable.git"
},
"keywords": [
"redux",
"react",
"query",
"fetch",
"REST",
"ImmutableJS"
],
"author": "Michael Siebers <michael.siebers@holidu.com>",
"license": "MIT",
"dependencies": {
"backo": "^1.1.0",
"immutable": "^4.0.0-rc.12",
"invariant": "^2.2.0",
"json-stable-stringify": "^1.0.0",
"lodash.difference": "^4.5.0",
"lodash.identity": "^3.0.0",
"lodash.includes": "^4.3.0",
"lodash.intersection": "^4.4.0",
"lodash.isfunction": "^3.0.9",
"lodash.values": "^4.3.0",
"prop-types": "^15.5.6",
"superagent": "^5.1.0"
},
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0-0 || ^16.0.0-rc || ^16.8.4",
"redux": "^2.0.0 || ^3.0.0 || ^4.0.1",
"redux-immutable": "^3.1.0 || ^4.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",
"chai-immutable": "^1.6.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": "^6.2.0",
"nyc": "^14.1.1",
"prettier": "^1.3.1",
"react": "^16.0.0",
"rimraf": "^2.4.3",
"superagent-mock": "^3.3.0",
"webpack": "^1.9.6"
}
}