-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
67 lines (67 loc) · 1.51 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
57
58
59
60
61
62
63
64
65
66
67
{
"name": "cycle-routing-driver",
"version": "1.4.2",
"description": "A bare-bones router for simple frontend routing in CycleJS",
"main": "dist/routing-driver.js",
"scripts": {
"test": "mocha",
"clean": "rm -rf dist",
"build": "babel src --out-dir dist",
"prepublishOnly": "npm run clean && npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/tshelburne/cycle-routing-driver"
},
"keywords": [
"cyclejs",
"cycle",
"routing",
"router",
"react"
],
"author": {
"name": "Tim Shelburne",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/tshelburne/cycle-routing-driver/issues"
},
"homepage": "https://github.com/tshelburne/cycle-routing-driver",
"dependencies": {
"@cycle/history": "^6.10.0",
"qs": "^6.9.3"
},
"peerDependencies": {
"react": "16 - 18",
"classnames": "1 - 2"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"@babel/preset-react": "^7.9.4",
"@babel/register": "^7.9.0",
"chai": "^4.2.0",
"classnames": "^2.2.6",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"mocha": "^5.2.0",
"mocha-clean": "^1.0.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"sinon": "^7.5.0"
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"modules": "auto"
}
],
"@babel/preset-react"
]
}
}