-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.03 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
{
"name": "use-reactive-state",
"version": "1.0.1",
"description": "useReactiveState() - a reactive alternative to React's useState()",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"dependencies": {
"react": "^16.8.6"
},
"devDependencies": {
"@types/jest": "^25.2.3",
"@types/react": "^16.9.41",
"jest": "^26.0.1",
"rimraf": "^3.0.2",
"ts-jest": "^26.1.0",
"typescript": "^3.9.5"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"build:release": "tsc -p tsconfig.release.json",
"test": "jest",
"prepublishOnly": "rimraf ./lib && npm run build:release"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tedstoychev/use-reactive-state.git"
},
"keywords": [
"React",
"hook",
"state",
"useState",
"useReactiveState"
],
"author": "Ted Stoychev",
"license": "MIT",
"bugs": {
"url": "https://github.com/tedstoychev/use-reactive-state/issues"
},
"homepage": "https://github.com/tedstoychev/use-reactive-state#readme"
}