-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
47 lines (47 loc) · 1.06 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
{
"name": "react-3ducks",
"version": "1.0.7",
"description": "Simple state management library for React",
"main": "lib/index.js",
"repository": "git://github.com/smakazmi/react-3ducks.git",
"scripts": {
"build": "rimraf lib & tsc",
"test": "jest",
"test:watch": "jest --watch",
"prepare": "npm run build"
},
"keywords": [
"react",
"reactjs",
"state",
"redux",
"flux",
"context",
"react-redux",
"unstated"
],
"author": "Ali Kazmi",
"license": "ISC",
"peerDependencies": {
"react": ">=16.3.0"
},
"devDependencies": {
"@types/auto-bind": "^2.1.0",
"@types/enzyme": "^3.10.3",
"@types/enzyme-adapter-react-16": "^1.0.5",
"@types/jest": "^24.0.18",
"@types/react": ">=16.3.0",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.15.1",
"enzyme-to-json": "^3.4.2",
"jest": "^24.9.0",
"react": ">=16.3.0",
"react-dom": "^16.10.2",
"rimraf": "^3.0.0",
"ts-jest": "^24.1.0",
"typescript": "^3.6.3"
},
"dependencies": {
"auto-bind": "^2.1.1"
}
}