-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
42 lines (42 loc) · 894 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
{
"name": "cycle-page",
"license": "MIT",
"description": "Tiny client-side router for Cycle.js",
"version": "1.3.0",
"dependencies": {
"@cycle/run": "^3.0.0",
"dom-events": "^0.1.1",
"global-object": "^1.0.0",
"history": "^3.0.0",
"path-to-regexp": "^1.5.3",
"xstream": "^10.3.0"
},
"devDependencies": {
"babel-preset-es2015": "^6.13.2",
"babelify": "^7.3.0",
"browserify": "^14.1.0",
"mocha": "^3.2.0",
"testem": "=1.9.1"
},
"author": "Garry",
"keywords": [
"history",
"Cycle",
"Cycle.js",
"route",
"xstream"
],
"files": [
"index.js",
"index.d.ts",
"LICENSE"
],
"repository": {
"type": "git",
"url": "https://github.com/garrydzeng/cycle-page"
},
"scripts": {
"prepublish": "babel index.es -o index.js --source-type module --minified",
"test": "cd test && testem"
}
}