-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 954 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
43
44
45
{
"name": "lemon-state",
"version": "0.0.2",
"description": "One more implimitation of react hooks state manager",
"main": "dist/index.js",
"types": "./dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/dihar/lemon-state.git"
},
"private": false,
"scripts": {
"test": "jest",
"prepublishOnly": "jest && tsc"
},
"keywords": [
"react",
"hooks",
"state-manager"
],
"files": [
"dist/*",
"README.md"
],
"author": "dihar",
"license": "ISC",
"dependencies": {
"is-plain-object": "*"
},
"devDependencies": {
"@types/jest": "^24.0.11",
"@types/react": "^16.8.12",
"@types/react-dom": "^16.8.4",
"jest": "^24.7.1",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-testing-library": "^7.0.0",
"ts-jest": "^24.0.2",
"typescript": "^3.4.4"
},
"peerDependencies": {
"react": "^16.8.0",
"react-dom": "^16.8.0"
}
}