-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 948 Bytes
/
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
{
"name": "@bearbytes/zeno-atom",
"version": "2.0.0-1",
"description": "Typesafe replacement for React's useReducer hook.",
"keywords": [
"typescript",
"typesafe",
"useReducer",
"react",
"hooks"
],
"author": "[email protected]",
"license": "ISC",
"homepage": "https://github.com/bearbytes/zeno-atom",
"repository": "https://github.com/bearbytes/zeno-atom.git",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
},
"dependencies": {
"immer": "7.0.5"
},
"peerDependencies": {
"react": "16.13.1"
},
"devDependencies": {
"@types/react": "^16.9.43",
"np": "^6.3.2",
"react": "^16.13.1",
"typescript": "beta"
},
"scripts": {
"prepare": "rm -rf dist && tsc",
"test": "jest --passWithNoTests",
"release": "np --no-yarn"
}
}