-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
44 lines (44 loc) · 1.17 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
{
"name": "cycle-hot-reloading-example",
"version": "0.0.1",
"description": "A Cycle.js starter project with hot reloading using Browserify",
"main": "index.js",
"scripts": {
"start": "babel-node server.js",
"test": "mocha --compilers js:babel-register",
"bundle": "browserify index.js -t babelify -t uglifyify -o bundle.js"
},
"repository": {
"type": "git",
"url": "https://github.com/Widdershin/cycle-hot-reloading-example.git"
},
"keywords": [
"hot",
"reloading",
"cycle.js",
"happiness"
],
"author": "Nick Johnstone",
"license": "MIT",
"bugs": {
"url": "https://github.com/Widdershin/cycle-hot-reloading-example/issues"
},
"homepage": "https://github.com/Widdershin/cycle-hot-reloading-example",
"dependencies": {
"@cycle/core": "^6.0.0-rc2",
"@cycle/dom": "^9.0.1",
"@cycle/isolate": "^1.2.0",
"babel-preset-es2015": "^6.1.18",
"cycle-restart": "0.0.14",
"rx": "^4.0.7"
},
"devDependencies": {
"babel-cli": "^6.2.0",
"babel-core": "^6.2.1",
"babelify": "^7.2.0",
"browserify": "^12.0.1",
"browserify-hmr": "^0.3.1",
"budo": "^6.1.0",
"uglifyify": "^3.0.1"
}
}