-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.09 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.09 KB
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
{
"name": "cycle-hmr-example",
"version": "0.0.1",
"description": "A Cycle.js starter project using browserify and cycle-hmr",
"main": "index.js",
"scripts": {
"start": "budo index.js --open --live *.css --serve bundle.js -- --ignore-missing -p browserify-hmr",
"bundle": "browserify . --ignore-missing > bundle.js"
},
"repository": {
"type": "git",
"url": "https://github.com/mciparelli/cycle-hmr-example.git"
},
"keywords": [
"hot",
"reloading",
"cycle.js",
"cycle-hmr"
],
"author": "Martín Ciparelli",
"license": "MIT",
"bugs": {
"url": "https://github.com/mciparelli/cycle-hmr-example/issues"
},
"homepage": "https://github.com/mciparelli/cycle-hmr-example",
"dependencies": {
"@cycle/dom": "^10.0.0-rc22",
"@cycle/xstream-run": "^1.1.0",
"xstream": "^2.6.0"
},
"devDependencies": {
"babel-preset-es2016": "^6.0.11",
"babelify": "^7.3.0",
"browserify": "^13.0.1",
"browserify-hmr": "^0.3.1",
"budo": "^8.2.2",
"cycle-hmr": "^0.3.1"
},
"browserify": {
"transform": [
"babelify"
]
}
}