-
Notifications
You must be signed in to change notification settings - Fork 67
/
Copy pathpackage.json
68 lines (68 loc) · 2.18 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
{
"name": "redux-query-interface-superagent",
"version": "3.6.1",
"description": "The default interface for redux-query, powered by superagent",
"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": "cross-env NODE_ENV=production cross-env BABEL_ENV=commonjs babel src --out-dir dist/commonjs --ignore test/",
"build:es": "cross-env NODE_ENV=production cross-env BABEL_ENV=es babel src --out-dir dist/es --ignore test/",
"build:umd": "cross-env NODE_ENV=production webpack --config webpack.config.js --bail",
"build:flow": "cp flow-template dist/commonjs/index.js.flow && cp flow-template dist/es/index.js.flow",
"build": "yarn clean && yarn run build:commonjs && yarn run build:es && yarn run build:umd && yarn run build:flow",
"clean": "rimraf dist",
"lint": "eslint src test --fix",
"prepublish": "yarn build",
"test": "jest"
},
"types": "index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/amplitude/redux-query.git"
},
"keywords": [
"redux-query",
"superagent"
],
"author": "Ryan Ashcraft <ryan@amplitude.com>",
"license": "MIT",
"dependencies": {
"superagent": "^5.0.6"
},
"peerDependencies": {
"redux-query": "^3.0.0-alpha.10"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.1",
"@babel/plugin-proposal-object-rest-spread": "^7.4.4",
"@babel/preset-env": "^7.0.0",
"@babel/preset-flow": "^7.0.0",
"@babel/register": "^7.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.8.0",
"babel-loader": "^8.0.2",
"cross-env": "^1.0.7",
"eslint": "^5.11.1",
"eslint-plugin-import": "^2.14.0",
"jest": "^25.0.0",
"redux-query": "^3.6.1",
"rimraf": "^2.4.3",
"superagent-mock": "^3.7.0",
"terser-webpack-plugin": "^1.3.0",
"webpack": "^4.19.0",
"webpack-cli": "^3.1.0"
},
"resolutions": {
"**/qs": "6.9.7"
},
"jest": {
"transform": {
"^.+\\.js$": "babel-jest"
}
},
"gitHead": "6937a1967c90ba7316fe351161d156334d3e3a3a"
}