-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 1.25 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
{
"name": "redux-saga-promise",
"version": "0.0.1",
"description": "Generator-less implementation of Redux-Saga",
"main": "lib/index.js",
"module": "'es/index.js",
"repository": "[email protected]:Vlemert/redux-saga-promise.git",
"author": "Niels Vleeming <[email protected]>",
"license": "MIT",
"scripts": {
"test": "yarn test:js && yarn test:lint && yarn flow",
"test:lint": "eslint './src/**/*.js'",
"test:js": "cross-env BABEL_ENV=test NODE_PATH=./src/js jest --config=./.jestconfig.json",
"test:watch": "cross-env BABEL_ENV=test NODE_PATH=./src/js jest --config=./.jestconfig.dev.json --watch",
"build:cjs": "cross-env BABEL_ENV=cjs babel src --out-dir lib",
"flow-copy-source": "flow-copy-source src lib -i '**/__tests__/**'",
"build:es": "cross-env BABEL_ENV=es babel src --out-dir es"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-preset-es2015": "^6.24.1",
"babel-preset-flow": "^6.23.0",
"babel-preset-stage-0": "^6.24.1",
"cross-env": "^5.0.0",
"eslint": "^3.19.0",
"eslint-plugin-flowtype": "^2.34.0",
"eslint-plugin-jest": "^20.0.3",
"flow-bin": "^0.47.0",
"flow-copy-source": "^1.1.0",
"jest": "^20.0.4",
"redux": "^3.6.0"
}
}