This repository has been archived by the owner on Dec 26, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
65 lines (65 loc) · 2 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
{
"name": "cycle-hmr",
"version": "0.3.1",
"description": "Cycle.js hot module replacement (HMR).",
"author": "whitecolor",
"license": "ISC",
"main": "lib/index.js",
"keywords": [
"dx",
"cyclejs",
"hmr",
"hot reload"
],
"scripts": {
"clean": "rimraf lib",
"build": "babel src -d lib",
"build-watch": "babel src -w -d lib",
"test-watch": "node-dev --respawn -r babel-register test",
"vmd-readme": "vmd README.md",
"prepublish": "npm run clean && npm run build",
"webpack-example": "h --n cycle-hmr-webpack -- node example/webpack.js",
"webpack-example-cli": "h --n cycle-hmr-webpack -- webpack-dev-server --config example/webpack.config.js",
"browserify-example": "h --n cycle-hmr-broserify -- node -r babel-register example/budo.js",
"browserify-example-cli": "h --n cycle-hmr-broserify -- budo example/app.js -- -t babelify --ignore-missing -p browserify-hmr"
},
"dependencies": {
"babel-plugin-cycle-hmr": "^0.3.0"
},
"devDependencies": {
"@cycle/base": "^2.0.1",
"@cycle/dom": "^10.0.0-rc11",
"@cycle/most-run": "^1.0.0",
"@cycle/rx-adapter": "^1.0.3",
"@cycle/rx-run": "^7.0.0-rc4",
"@cycle/rxjs-adapter": "^1.0.5",
"@cycle/rxjs-run": "^1.0.3",
"@cycle/xstream-run": "^1.0.1",
"@motorcycle/core": "^1.2.1",
"assert": "^1.3.0",
"babel-cli": "^6.6.5",
"babel-core": "^6.7.4",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-stage-0": "^6.5.0",
"babelify": "^7.3.0",
"browserify": "^13.0.0",
"browserify-css": "^0.9.1",
"browserify-hmr": "^0.3.1",
"budo": "^8.2.2",
"css-loader": "^0.23.1",
"cycle-circular": "*",
"mocha": "^2.4.5",
"most": "^0.19.0",
"rx": "^4.1.0",
"rx-factory": "^1.0.0",
"rxjs": "^5.0.0-beta.7",
"steal": "^0.16.4",
"style-loader": "^0.13.1",
"tape": "^4.5.1",
"watchalive": "^1.1.9",
"webpack": "^2.1.0-beta.6",
"webpack-dev-server": "^2.0.0-beta",
"xstream": "^2.1.2"
}
}