forked from joerndyherrn/saga-monitor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 2.32 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "@clarketm/saga-monitor",
"version": "2.0.1",
"description": "Simple, elegant, and configurable redux-saga monitor.",
"main": "dist/saga-monitor.js",
"module": "dist/saga-monitor.es.js",
"directories": {
"example": "example"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "yarn build:dist",
"build:dist": "shx rm -rf ./dist/* ; yarn bundle:dist ; yarn bundle:es ; yarn stats:dist",
"stats:dist": "node ./resources/dist-stats.js",
"bundle:dist": "rollup -c ./resources/rollup-config.js",
"bundle:es": "rollup -c ./resources/rollup-config-es.js",
"prettier": "prettier --write './src/**/*.{js,css,md}'",
"prep": "yarn prettier && yarn build && yarn test",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"prepublishOnly": "yarn prep && bash ./resources/publish.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/clarketm/saga-monitor.git"
},
"keywords": [
"redux",
"saga",
"react"
],
"author": {
"name": "Travis Clarke",
"email": "travis.m.clarke@gmail.com",
"url": "https://www.travismclarke.com/"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/clarketm/saga-monitor/issues"
},
"homepage": "https://github.com/clarketm/saga-monitor#readme",
"publishConfig": {
"access": "public"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,css,md}": [
"prettier --write",
"git add"
]
},
"peerDependencies": {
"redux-saga": ">=1.0"
},
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/preset-env": "^7.1.0",
"@types/jest": "^23.3.4",
"@types/node": "^10.11.5",
"colors": "^1.3.2",
"husky": "^1.1.1",
"jest": "^23.6.0",
"lint-staged": "^7.3.0",
"prettier": "^1.14.3",
"redux": "^4.0.0",
"redux-saga": "^1.0.0",
"rollup": "^0.66.4",
"rollup-plugin-babel": "^4.0.3",
"rollup-plugin-commonjs": "^9.1.8",
"rollup-plugin-json": "^3.1.0",
"rollup-plugin-node-resolve": "^4.0.0",
"rollup-plugin-strip-banner": "^0.2.0",
"shx": "^0.3.2",
"uglify-js": "2.8.11",
"uglify-save-license": "^0.4.1"
},
"dependencies": {
"@redux-saga/core": "^1.0.1",
"@redux-saga/is": "^1.0.1"
}
}