-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 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
70
71
72
73
74
{
"name": "use-restate",
"version": "0.0.19",
"main": "dist/index.js",
"umd": "dist/index.umd.js",
"module": "dist/index.m.js",
"repository": {
"type": "git",
"url": "git+https://github.com/animify/useRestate.git"
},
"keywords": [
"restate",
"use-restate",
"react hooks",
"redux hooks",
"useAction",
"useRestate"
],
"author": "Stefan Mansson <[email protected]>",
"license": "MIT",
"scripts": {
"start": "parcel ./example/index.html -d site",
"bundle": "rollup -c",
"build": "sh ./build.sh",
"prepublishOnly": "yarn build",
"release": "changelog && git push --follow-tags && yarn publish --access public --non-interactive",
"lint": "tslint -p tsconfig.json",
"test": "jest"
},
"peerDependencies": {
"react": "^16.7.0-alpha.0",
"react-dom": "^16.7.0-alpha.0",
"redux": "^4.0.1"
},
"devDependencies": {
"@types/jest": "^23.3.10",
"@types/react": "^16.7.11",
"@types/react-dom": "^16.0.11",
"@types/redux": "^3.6.0",
"changelog.md": "^1.1.0",
"husky": "^1.2.0",
"jest": "^23.6.0",
"lint-staged": "^8.1.0",
"parcel": "^1.10.3",
"rollup": "^0.66.6",
"rollup-plugin-babel": "^4.0.3",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-node-resolve": "^3.4.0",
"rollup-plugin-peer-deps-external": "^2.2.0",
"rollup-plugin-typescript2": "^0.18.0",
"ts-jest": "^23.10.5",
"tslint": "^5.11.0",
"typescript": "^3.2.1"
},
"files": [
"dist",
"index.d.ts",
"shallowEqual.d.ts",
"README.md",
"LICENSE"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts": "yarn run lint"
}
}