-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.38 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
{
"name": "redux-replayable",
"version": "4.0.0",
"description": "A Redux utility to collect actions for replaying and logging, with whitelisting and GDPR-friendly controls.",
"main": "dist/index.js",
"files": [
"dist/**/*"
],
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"test": "jest --config jestconfig.json",
"prepare": "yarn run build",
"prepublishOnly": "npm test",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/klauspaiva/redux-replayable.git"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"keywords": [
"redux actions",
"replay redux actions"
],
"author": "Klaus Paiva",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/klauspaiva/redux-replayable/issues"
},
"homepage": "https://github.com/klauspaiva/redux-replayable#readme",
"devDependencies": {
"@types/jest": "^23.3.10",
"@types/lodash": "^4.14.119",
"husky": "^1.2.1",
"jest": "^23.6.0",
"prettier": "^1.15.3",
"pretty-quick": "^1.8.0",
"ts-jest": "^23.10.5",
"typescript": "^3.2.2"
},
"dependencies": {
"lodash": "^4.17.11",
"rdct": "^1.0.0"
}
}