forked from redux-saga/redux-saga-devtools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.83 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-saga-devtools",
"version": "0.1.0",
"description": "Monitor and UI for redux-saga",
"main": "lib/index.js",
"devDependencies": {
"babel-cli": "^6.16.0",
"babel-core": "^6.17.0",
"babel-eslint": "^7.1.0",
"babel-polyfill": "^6.16.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-2": "^6.18.0",
"babelify": "^7.3.0",
"browserify": "^13.1.1",
"browserify-css": "^0.9.2",
"budo": "^9.2.1",
"cross-env": "^3.1.3",
"eslint": "^3.10.1",
"react-redux": "^4.4.5",
"redux": "^3.6.0",
"redux-saga": "^0.13.0",
"rimraf": "^2.5.4",
"tap-spec": "^4.1.1",
"tape": "^4.6.2"
},
"dependencies": {
"react": "^15.3.2",
"react-dom": "^15.3.2",
"styled-components": "^1.0.11"
},
"peerDependecies": {
"redux-saga": "^0.13.0"
},
"scripts": {
"lint": "eslint src",
"test": "cross-env NODE_PATH=./src babel-node ./test | tap-spec",
"compile": "rimraf lib && babel src --out-dir lib",
"prepublish": "npm run lint && npm run test && npm run compile",
"counter": "budo ./examples/cancellable-counter/index.js:build.js --dir ./examples/cancellable-counter --live",
"shopping-cart": "budo ./examples/shopping-cart/index.js:build.js --dir ./examples/shopping-cart --live"
},
"browserify": {
"transform": [
[
"babelify"
]
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/yelouafi/redux-saga-devtools.git"
},
"keywords": [
"javascript",
"redux",
"redux-saga",
"monior",
"devtool",
"react"
],
"author": "Yassine ELOUAFI <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/yelouafi/redux-saga-devtools/issues"
},
"homepage": "https://github.com/yelouafi/redux-saga-devtools"
}