-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.6 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
{
"name": "redux-saga-process",
"version": "1.0.3",
"description": "Processes for Redux-Saga",
"main": "dist/redux-saga-process.js",
"scripts": {
"test": "./node_modules/.bin/mocha --require co-mocha",
"prepublish": "npm run build",
"build": "cross-env-shell BABEL_ENV=production NODE_ENV=production \"rimraf dist && webpack\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/Dash-OS/redux-saga-process.git"
},
"files": [
"src",
"dist",
"webpack.config.js",
"README.md",
"LICENSE"
],
"directories": {
"lib": "src/process-lib"
},
"bugs": {
"url": "https://github.com/Dash-OS/redux-saga-process/issues"
},
"keywords": [
"react",
"react-native",
"redux",
"saga",
"redux-saga",
"process",
"daemon",
"generators",
"yield",
"class",
"observer",
"reselect",
"selectors",
"async"
],
"author": "Braden R. Napier <[email protected]> (https://www.dashos.net)",
"license": "MIT",
"homepage": "https://github.com/Dash-OS/redux-saga-process#readme",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-loader": "^7.0.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-babili": "^0.1.2",
"babel-preset-env": "^1.5.2",
"babel-preset-stage-0": "^6.24.1",
"babili-webpack-plugin": "^0.1.1",
"cross-env": "^5.0.1",
"rimraf": "^2.6.1",
"webpack": "^2.6.1",
"webpack-node-externals": "^1.6.0",
"yargs": "^8.0.2"
},
"dependencies": {
"react": "^15.5.4",
"redux-saga": "^0.14.8",
"reselect": "^3.0.0"
}
}