-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
50 lines (50 loc) · 1.46 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
{
"name": "@zambezi/caballo-vivo",
"version": "1.3.0",
"description": "Caballo Vivo",
"main": "./lib-commonjs",
"module": "./lib-module",
"es2015": "./lib-es2015",
"sideEffects": false,
"scripts": {
"test": "jest",
"prepublishOnly": "npm test && npm run build",
"build": "npm run build-commonjs && npm run build-module && npm run build-es2015",
"build-commonjs": "cross-env BABEL_ENV=commonjs babel src -d lib-commonjs",
"build-module": "cross-env BABEL_ENV=module babel src -d lib-module",
"build-es2015": "cross-env BABEL_ENV=es2015 babel src -d lib-es2015"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zambezi/caballo-vivo.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/zambezi/caballo-vivo/issues"
},
"homepage": "https://github.com/zambezi/caballo-vivo#readme",
"peerDependencies": {
"react": "^16.8.0||^17.0.0"
},
"dependencies": {
"history": "^4.7.2",
"query-string": "^5.0.0||^6.0.0",
"immutable": "^3.0.0||^4.0.0",
"react-router": "^4.0.0||^5.0.0",
"rxjs": "^6.0.0",
"ramda": "^0.26.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-jest": "^24.7.1",
"babel-preset-env": "^1.7.0",
"babel-preset-stage-3": "^6.24.1",
"cross-env": "^5.2.0",
"jest": "^24.9.0",
"jest-immutable-matchers": "^2.0.1",
"react": "^16.8.0",
"regenerator-runtime": "^0.13.1"
}
}