-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
72 lines (72 loc) · 2.08 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
{
"name": "redux-and-the-rest",
"version": "6.1.6",
"description": "Declarative, flexible Redux integration with your RESTful API",
"main": "index.js",
"scripts": {
"prepare": "rimraf -rf cjs && npm run build-development && npm run build-production",
"build-development": "cross-env BABEL_ENV=development NODE_ENV=development babel src --ignore tests -d cjs",
"build-production": "cross-env BABEL_ENV=production NODE_ENV=production rollup -c",
"build-tests": "rimraf -rf cjs && cross-env BABEL_ENV=test NODE_ENV=development babel src -d cjs",
"tests": "npm run build-tests && node ./cjs/tests/runTests.js || true",
"watch-tests": "nodemon --exec 'clear && npm run tests || true'",
"lint": "eslint --fix ./src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/greena13/redux-and-the-rest.git"
},
"keywords": [
"React",
"Redux",
"RESTful",
"API"
],
"files": [
"cjs",
"package.json",
"README.md",
"images",
"LICENSE",
"index.d.ts",
"index.js"
],
"typings": "./index.d.ts",
"author": "Aleck Greenham",
"license": "ISC",
"bugs": {
"url": "https://github.com/greena13/redux-and-the-rest/issues"
},
"homepage": "https://github.com/greena13/redux-and-the-rest#readme",
"peerDependencies": {
"redux": ">= 1.0.0",
"redux-thunk": ">= 1.0.0"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"@rollup/plugin-babel": "^5.0.2",
"@rollup/plugin-replace": "^2.3.2",
"@types/jasmine": "^3.5.10",
"@types/whatwg-fetch": "^0.0.33",
"cross-env": "^7.0.3",
"eslint": "^7.1.0",
"fetch-mock": "^9.10.1",
"husky": "^4.2.5",
"jasmine": "^3.5.0",
"jasmine-console-reporter": "^3.1.0",
"node-fetch": "^2.6.0",
"nodemon": "^2.0.4",
"redux": "^4.0.5",
"redux-thunk": "^2.3.0",
"rimraf": "^3.0.2",
"rollup": "^2.10.9",
"rollup-plugin-license": "^2.1.0",
"rollup-plugin-terser": "^6.1.0"
},
"dependencies": {
"pluralize": "^8.0.0",
"query-string": "^6.12.1"
}
}