forked from ChaosGroup/redux-saga-first-router
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.4 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
{
"name": "redux-saga-first-router",
"version": "0.0.20",
"description": "'Saga First' Router for React/Redux/Saga Projects",
"main": "lib/index.js",
"module": "lib/es/index.js",
"repository": "https://github.com/ChaosGroup/redux-saga-first-router",
"author": "ChaosGroup (c) 2013-2017",
"license": "MIT",
"keywords": [
"react",
"redux",
"redux-saga",
"router"
],
"files": [
"src",
"lib"
],
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-eslint": "^7.2.3",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-3": "^6.24.1",
"cross-env": "^5.0.5",
"eslint": "^4.4.1",
"eslint-plugin-jest": "^20.0.3",
"jest": "^20.0.4",
"npm-run-all": "^4.0.2",
"prettier": "^1.5.3",
"rimraf": "^2.6.1"
},
"dependencies": {
"babel-runtime": "^6.26.0",
"history": "^4.6.3",
"path-to-regexp": "^1.7.0",
"redux-saga": "^0.15.6"
},
"scripts": {
"build": "run-s clean build:**",
"build:cjs": "cross-env BABEL_ENV=cjs babel src --out-dir lib --ignore __tests__",
"build:es": "cross-env BABEL_ENV=es babel src --out-dir lib/es --ignore __tests__",
"clean": "rimraf lib",
"eslint": "eslint src",
"test": "jest",
"test-dev": "jest --watchAll",
"prettier": "prettier --write \"src/**/*.js\""
},
"jest": {
"moduleNameMapper": {},
"roots": [
"<rootDir>/src/"
]
}
}