-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2 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-asco",
"version": "1.0.5",
"description": "Redux asynchronous object collection",
"main": "lib/index.js",
"files": [
"lib",
"src",
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/oligus/redux-asco.git"
},
"scripts": {
"clean": "rimraf lib dist build",
"build": "npm run clean && npm run build:dev && npm run build:prd",
"prepublish": "npm run clean && npm run test && npm run build",
"build:dev": "webpack --config tools/webpack.config.dev.js",
"build:prd": "webpack --config tools/webpack.config.prod.js",
"build:demo": "webpack --config tools/webpack.config.demo.js",
"lint": "eslint src",
"test": "jest",
"test:watch": "jest --watch"
},
"keywords": [
"asynchronous collection"
],
"author": "Oli Gustafsson",
"license": "GPL-2.0",
"bugs": {
"url": "https://github.com/oligus/redux-asco/issues"
},
"homepage": "https://github.com/oligus/redux-asco#readme",
"peerDependencies": {
"redux": "~3.6",
"redux-thunk": "~2.2"
},
"devDependencies": {
"babel-core": "^6.4.0",
"babel-eslint": "^4.1.6",
"babel-istanbul": "^0.6.0",
"babel-istanbul-loader": "0.0.1",
"babel-jest": "^19.0.0",
"babel-loader": "^6.2.1",
"babel-plugin-add-module-exports": "^0.1.2",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.23.0",
"babel-preset-stage-0": "^6.22.0",
"eslint": "^1.10.3",
"eslint-config-airbnb": "^3.1.0",
"jest": "^19.0.2",
"loader-utils": "^0.2.12",
"phantomjs-polyfill-object-assign": "0.0.2",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"react-redux": "^5.0.2",
"redux": "^3.6.0",
"redux-thunk": "^2.2.0",
"rimraf": "^2.5.0",
"webpack": "^1.12.11"
},
"dependencies": {
"fetch-mock": "^5.9.4",
"immutable": "^3.8.1",
"object-path": "^0.11.4",
"object-path-immutable": "^0.5.1",
"redux-actions": "^1.2.1",
"whatwg-fetch": "^2.0.3"
}
}