-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
54 lines (54 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "redux-saga-first-router",
"version": "2.2.0",
"description": "'Saga First' Router for React/Redux/Saga Projects",
"source": "src/index.js",
"main": "lib/redux-saga-first-router.js",
"module": "lib/redux-saga-first-router.module.js",
"esmodule": "lib/redux-saga-first-router.modern.js",
"unpkg": "lib/redux-saga-first-router.umd.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-eslint": "^10.1.0",
"babel-jest": "^27.0.1",
"eslint": "^7.27.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^24.3.6",
"jest": "^27.0.1",
"microbundle": "^0.13.0",
"prettier": "^2.3.0"
},
"dependencies": {
"@babel/runtime": "^7.14.0",
"history": "^5.0.0",
"path-to-regexp": "^6.2.0",
"redux-saga": "^1.1.3"
},
"scripts": {
"build": "microbundle",
"dev": "microbundle watch",
"eslint": "eslint src",
"test": "jest",
"test-dev": "jest --watchAll",
"prettier": "prettier --write \"src/**/*.js\"",
"prepare": "yarn run build"
},
"jest": {
"moduleNameMapper": {},
"roots": [
"<rootDir>/src/"
]
}
}