-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
73 lines (73 loc) · 1.78 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
{
"name": "@oplog/resource-redux",
"version": "0.2.6",
"description": "generic http resource store for redux",
"main": "dist/main",
"types": "dist/index",
"typings": "dist/index",
"scripts": {
"prebuild": "rimraf ./dist",
"build": "webpack --config webpack.config.js --mode production",
"build:dev": "webpack --config webpack.config.js --mode development -p --progress",
"watch": "npm run build:dev -- --watch",
"test": "jest --watch",
"test:coverage": "jest --coverage",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/oplog/resource-redux.git"
},
"author": "Team OPLOG <info@oplog.com.tr”> (https://oplog.com.tr)",
"license": "MIT",
"bugs": {
"url": "https://github.com/oplog/resource-redux/issues"
},
"homepage": "https://github.com/oplog/resource-redux#readme",
"devDependencies": {
"@types/jest": "^23.3.5",
"jest": "^29.3.1",
"rimraf": "^2.6.2",
"source-map-loader": "^0.2.4",
"ts-jest": "^23.10.4",
"ts-loader": "^5.2.1",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"tslint-loader": "^3.5.4",
"typescript": "^3.1.4",
"webpack": "^4.20.2",
"webpack-cli": "^3.1.2"
},
"dependencies": {
"redux": "^4.0.1",
"redux-saga": "^0.16.0"
},
"peerDependencies": {
"redux-saga": "^0.16.0"
},
"jest": {
"roots": [
"<rootDir>"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.tsx?$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"coverageThreshold": {
"global": {
"branches": 70,
"functions": 100,
"lines": 87,
"statements": 84
}
}
}
}