This repository has been archived by the owner on Jan 27, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
69 lines (69 loc) · 1.77 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
{
"name": "@redux-dynostore/redux-saga",
"version": "3.2.1",
"description": "Dynamically add Redux sagas at runtime",
"author": "Michael Peyper",
"contributors": [
"Jonathan Peyper"
],
"license": "BSD-3-Clause",
"main": "lib/index.js",
"module": "es/index.js",
"sideEffects": false,
"files": [
"lib",
"es",
"src"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/ioof-holdings/redux-dynostore.git"
},
"peerDependencies": {
"@redux-dynostore/core": "^3.0.0",
"redux": "^3.0.0 || ^4.0.0",
"redux-saga": "^1.0.0"
},
"devDependencies": {
"@babel/core": "7.12.10",
"@babel/plugin-proposal-object-rest-spread": "7.12.1",
"@babel/plugin-transform-modules-commonjs": "7.12.1",
"@babel/plugin-transform-runtime": "7.12.10",
"@babel/preset-env": "7.12.11",
"@babel/runtime": "7.12.5",
"@redux-dynostore/core": "^3.2.1",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "10.1.0",
"babel-jest": "26.6.3",
"babel-plugin-annotate-pure-calls": "0.4.0",
"babel-plugin-module-resolver": "4.1.0",
"core-js": "3.8.3",
"cross-env": "7.0.3",
"jest": "26.6.3",
"redux": "4.0.5",
"redux-saga": "1.1.3",
"rimraf": "3.0.2",
"rollup": "2.38.0",
"rollup-plugin-babel": "4.4.0"
},
"scripts": {
"prebuild": "rimraf lib es",
"build": "rollup -c",
"lint": "eslint . --ext .js --ext .jsx",
"lint:fix": "eslint . --ext .js --ext .jsx --fix",
"test": "jest",
"test:watch": "npm test -- --watch",
"prepublish": "npm run build"
},
"jest": {
"collectCoverage": true,
"coverageDirectory": "./coverage/",
"collectCoverageFrom": [
"**/src/**"
],
"testURL": "http://localhost/"
}
}