-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.42 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
48
49
50
51
52
53
54
55
56
{
"name": "@atomic-reactor/use-select",
"version": "1.0.1",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/Atomic-Reactor/use-select.git"
},
"dependencies": {
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2"
},
"devDependencies": {
"@atomic-reactor/reactium-sdk-core": "^1.1.0",
"@babel/cli": "^7.10.5",
"@babel/core": "^7.11.0",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-proposal-export-default-from": "^7.10.4",
"@babel/preset-env": "^7.11.0",
"@babel/preset-react": "^7.10.4",
"action-sequence": "^1.1.1",
"apidoc": "^0.24.0",
"babel-jest": "^26.2.2",
"chai": "^4.2.0",
"classnames": "^2.2.6",
"jest": "^26.2.2",
"jest-cli": "^26.2.2",
"object-path": "^0.11.5",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-redux": "^7.1.3",
"redux": "^4.0.4",
"shallow-equals": "^1.0.0",
"underscore": "^1.13.1",
"uuid": "^3.4.0"
},
"peerDependencies": {
"@atomic-reactor/reactium-sdk-core": "*",
"react-redux": "*",
"object-path": "*",
"react": "*",
"redux": "*",
"react-dom": "*",
"shallow-equals": "*"
},
"scripts": {
"build": "babel src --out-dir lib",
"apidoc": "apidoc -i src -o docs",
"test": "jest",
"pretest": "npm run build",
"prepublish": "rm -rf lib && npm run build"
},
"files": [
"lib"
]
}