-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
71 lines (71 loc) · 1.66 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
{
"name": "use-reducer-effect",
"version": "0.0.0-development",
"description": "A tiny library that enables side effects with the useReducer hook",
"repository": {
"type": "git",
"url": "https://github.com/Jibbedi/use-reducer-effect.git"
},
"keywords": [
"react",
"hooks",
"reducer",
"useReducer",
"side",
"effects",
"sideeffects",
"side-effects",
"typescript"
],
"author": "Johannes Kling",
"license": "MIT",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"start": "rollup -cw",
"build": "rollup -c",
"commit": "./node_modules/.bin/git-cz",
"test": "./node_modules/.bin/jest",
"semantic-release": "semantic-release"
},
"peerDependencies": {
"react": ">= 16.8.0"
},
"devDependencies": {
"@types/jest": "^23.3.9",
"@types/react": "16.8.1",
"@types/react-dom": "16.0.11",
"all-contributors-cli": "^6.7.0",
"commitizen": "3.1.1",
"cz-conventional-changelog": "2.1.0",
"husky": "2.4.1",
"jest": "^24.0.0",
"prettier": "^1.16.4",
"react": "16.8.0",
"react-dom": "16.8.0",
"react-testing-library": "^5.4.4",
"rollup": "^1.1.2",
"rollup-plugin-typescript2": "^0.19.2",
"ts-jest": "^23.10.5",
"tslint": "^5.12.1",
"tslint-config-prettier": "^1.17.0",
"tslint-react": "^3.6.0",
"typescript": "^3.3.1",
"semantic-release": "^15.13.24",
"validate-commit-msg": "2.14.0"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"commit-msg": "validate-commit-msg"
}
}
}