-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
33 lines (33 loc) · 799 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
{
"name": "@staltz/use-profunctor-state",
"version": "1.3.0",
"description": "React Hook for state management with profunctor lenses",
"main": "index.js",
"typings": "index.d.ts",
"scripts": {
"compile": "tsc",
"test": "tape test.js",
"prepublishOnly": "npm run compile"
},
"author": "Andre Staltz <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/staltz/use-profunctor-state.git"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@types/node": "^10.12.0",
"react": "16.8.6",
"react-dom": "16.8.6",
"react-test-renderer": "16.8.6",
"tape": "^4.8.0",
"typescript": "3.1.x"
}
}