forked from redux-saga/redux-saga
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 3.59 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "redux-saga",
"version": "0.14.3",
"description": "Saga middleware for Redux to handle Side Effects",
"main": "lib/index.js",
"module": "es/index.js",
"jsnext:main": "es/index.js",
"scripts": {
"lint": "eslint src",
"test": "cross-env BABEL_ENV=cjs babel-node test/index.js | tap-spec",
"check": "npm run lint && npm run test",
"compile": "rimraf lib && cross-env BABEL_ENV=cjs babel -d lib/ src/",
"build:umd:dev": "cross-env BABEL_ENV=cjs webpack src/index.js dist/redux-saga.js --config webpack.config.dev.js",
"build:umd:prod": "cross-env BABEL_ENV=cjs webpack src/index.js dist/redux-saga.min.js --config webpack.config.prod.js",
"build:es": "cross-env BABEL_ENV=es babel src --out-dir es",
"build": "rimraf dist es && npm run build:umd:dev && npm run build:umd:prod && npm run build:es",
"prepublish": "npm run check && npm run compile && npm run build",
"counter": "cross-env BABEL_ENV=cjs node examples/counter/server.js",
"cancellable-counter": "cross-env BABEL_ENV=cjs node examples/cancellable-counter/server.js",
"test-counter": "cross-env BABEL_ENV=cjs babel-node examples/counter/test/sagas.js | tap-spec",
"shop": "cross-env BABEL_ENV=cjs node examples/shopping-cart/server.js",
"test-shop": "cross-env BABEL_ENV=cjs babel-node examples/shopping-cart/test/sagas.js | tap-spec",
"async": "cross-env BABEL_ENV=cjs node examples/async/server.js",
"test-async": "cross-env BABEL_ENV=cjs babel-node examples/async/test/sagas.js | tap-spec",
"real-world": "npm --prefix examples/real-world install examples/real-world && cross-env BABEL_ENV=cjs node --require babel-register examples/real-world/server.js",
"docs:clean": "rimraf _book",
"docs:prepare": "gitbook install",
"docs:build": "npm run docs:prepare && gitbook build -g redux-saga/redux-saga",
"docs:watch": "npm run docs:prepare && gitbook serve",
"docs:publish": "npm run docs:clean && npm run docs:build && cd _book && git init && git commit --allow-empty -m 'update book' && git checkout -b gh-pages && touch .nojekyll && git add . && git commit -am 'update book' && git push [email protected]:redux-saga/redux-saga gh-pages --force"
},
"repository": {
"type": "git",
"url": "git+https://github.com/redux-saga/redux-saga.git"
},
"keywords": [
"javascript",
"redux",
"middleware",
"saga",
"effects",
"side effects"
],
"author": "Yassine ELOUAFI <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/redux-saga/redux-saga/issues"
},
"homepage": "https://github.com/redux-saga/redux-saga#readme",
"dependencies": {},
"devDependencies": {
"babel-cli": "^6.1.18",
"babel-core": "^6.14.0",
"babel-eslint": "^6.0.3",
"babel-loader": "^6.2.5",
"babel-polyfill": "^6.7.4",
"babel-preset-es2015": "^6.14.0",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-2": "^6.13.0",
"cross-env": "^1.0.8",
"eslint": "^2.8.0",
"express": "^4.13.3",
"gitbook-cli": "1.0.1",
"isomorphic-fetch": "^2.2.0",
"lolex": "^1.5.2",
"react": "^15.0.0",
"react-dom": "^15.0.0",
"react-redux": "^4.4.5",
"redux": "^3.5.1",
"redux-logger": "^2.6.1",
"rimraf": "^2.4.3",
"tap-spec": "^4.1.1",
"tape": "^4.2.2",
"typescript": "^1.8.10",
"typescript-definition-tester": "0.0.4",
"webpack": "1.13.0",
"webpack-dev-middleware": "^1.4.0",
"webpack-hot-middleware": "^2.6.0"
},
"typings": "./index.d.ts",
"npmName": "redux-saga",
"npmFileMap": [
{
"basePath": "/dist/",
"files": [
"*.js"
]
}
]
}