This repository has been archived by the owner on Feb 14, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.7 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
{
"name": "rdx-api",
"description": "Redux middleware for calling a (REST) API.",
"version": "2.0.7",
"license": "MIT",
"author": "Vereniging Campus Kabel <info@vck.tv> (https://vck.tv)",
"contributors": [
"Daniel Huisman <daniel@huisman.me> (https://danielhuisman.io)"
],
"repository": "github:VerenigingCampusKabel/redux-api",
"homepage": "https://github.com/VerenigingCampusKabel/redux-api",
"bugs": {
"url": "https://github.com/VerenigingCampusKabel/redux-api/issues",
"email": "info@vck.tv"
},
"keywords": [
"redux",
"api",
"middleware",
"flux",
"rest"
],
"main": "lib/index.js",
"files": [
"lib/",
"LICENSE.md",
"README.md"
],
"scripts": {
"clean": "rimraf lib",
"lint": "eslint index.js src --color",
"build:babel": "cross-env NODE_ENV=production babel src --out-dir lib",
"build:babel2": "cross-env NODE_ENV=production babel lib --out-dir lib",
"build": "yarn run clean && yarn run build:babel && yarn run build:babel2",
"prepublish": "yarn run build",
"test": "babel-node example/test.js"
},
"dependencies": {
"babel-runtime": "^6.9.2",
"humps": "^2.0.0",
"immutable": "^3.8.1",
"isomorphic-fetch": "^2.2.1",
"qs": "^6.2.1",
"valid-url": "^1.0.9"
},
"devDependencies": {
"babel-cli": "^6.7.5",
"babel-core": "^6.10.4",
"babel-eslint": "7.1.1",
"babel-plugin-transform-runtime": "^6.9.0",
"babel-plugin-uglify": "^1.0.2",
"babel-preset-es2015": "^6.6.0",
"babel-preset-stage-0": "^6.5.0",
"cross-env": "^1.0.7",
"eslint": "3.12.2",
"eslint-config-google": "^0.6.0",
"eslint-plugin-babel": "^3.2.0",
"rimraf": "^2.5.2",
"uglify-js": "^2.7.0"
}
}