-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.46 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
{
"name": "redux-http-request-middleware",
"version": "2.0.0-rc.1",
"description": "Transparently add the HTTP request ability to your redux actions.",
"homepage": "https://github.com/hk-labs/redux-http-request-middleware#readme",
"keywords": [
"react",
"redux",
"http",
"request",
"middleware",
"actions",
"query",
"fetch",
"rest"
],
"repository": {
"type": "git",
"url": "git+https://github.com/hk-labs/redux-http-request-middleware.git"
},
"bugs": {
"url": "https://github.com/hk-labs/redux-http-request-middleware/issues"
},
"main": "dist/lib/http-request-middleware.js",
"module": "dist/es/http-request-middleware.js",
"unpkg": "dist/umd/http-request-middleware.min.js",
"jsdelivr": "dist/umd/http-request-middleware.min.js",
"files": [
"dist",
"src"
],
"scripts": {
"clean": "rimraf .nyc_output dist coverage",
"test": "cross-env NODE_ENV=test mocha test/*.spec.js",
"test:cov": "cross-env NODE_ENV=test nyc npm test",
"coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"build:cjs": "cross-env NODE_ENV=cjs rollup -c -o dist/lib/http-request-middleware.js",
"build:es": "cross-env BABEL_ENV=es NODE_ENV=es rollup -c -o dist/es/http-request-middleware.js",
"build:umd": "cross-env BABEL_ENV=es NODE_ENV=development rollup -c -o dist/umd/http-request-middleware.js",
"build:umd:min": "cross-env BABEL_ENV=es NODE_ENV=production rollup -c -o dist/umd/http-request-middleware.min.js",
"build": "npm run build:cjs && npm run build:es && npm run build:umd && npm run build:umd:min",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s"
},
"dependencies": {
"superagent": "^5.1.0"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/register": "^7.5.5",
"chai": "^4.2.0",
"codecov": "^3.5.0",
"conventional-changelog-cli": "^2.0.21",
"cross-env": "^5.2.0",
"http-status-codes": "^1.3.2",
"mocha": "^6.1.4",
"nock": "^10.0.6",
"nyc": "^14.1.1",
"redux": "^4.0.4",
"redux-mock-store": "^1.5.3",
"rimraf": "^2.6.3",
"rollup": "^1.17.0",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.0.1",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-uglify": "^6.0.2",
"sinon": "^7.3.2",
"sinon-chai": "^3.3.0"
},
"author": "Dan Kerimdzhanov",
"license": "MIT"
}