-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
62 lines (62 loc) · 1.78 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
{
"name": "cycle-restart",
"version": "0.2.3",
"description": "Restart a Cycle.js application and preserve state.",
"main": "lib/restart",
"files": [
"lib"
],
"scripts": {
"test": "npm run test-node && npm run test-browser",
"test-node": "mocha --compilers js:babel-core/register test/node/*",
"autotest-node": "mocha --compilers js:babel-core/register --watch test/node/*",
"test-browser": "mochify --transform babelify test/browser/*",
"autotest-browser": "mochify --watch --transform babelify test/browser/*",
"precompile-lib": "rm -rf lib/ && mkdir -p lib",
"compile-lib": "babel src -d lib",
"prepublish": "npm run compile-lib"
},
"repository": {
"type": "git",
"url": "https://github.com/Widdershin/cycle-restart.git"
},
"keywords": [
"cycle.js",
"hot",
"module",
"reloading",
"happiness"
],
"author": "Nick Johnstone",
"license": "MIT",
"bugs": {
"url": "https://github.com/Widdershin/cycle-restart/issues"
},
"homepage": "https://github.com/Widdershin/cycle-restart",
"devDependencies": {
"@cycle/history": "^6.2.0",
"@cycle/http": "^13.3.0",
"@cycle/isolate": "^2.1.0",
"@cycle/jsonp": "^7.0.0",
"babel-cli": "^6.3.15",
"babel-core": "^6.3.15",
"babel-plugin-transform-object-assign": "^6.3.13",
"babel-plugin-transform-object-rest-spread": "^6.3.13",
"babel-preset-es2015": "^6.3.13",
"babelify": "^7.2.0",
"browserify": "^14.3.0",
"jquery": "^3.2.1",
"mocha": "^3.4.2",
"mochify": "^3.2.1",
"phantomjs": "^2.1.7",
"superagent": "3.8.2",
"superagent-mock": "^3.4.0",
"@cycle/dom": "^17.4.0",
"@cycle/run": "^3.1.0"
},
"dependencies": {
"@cycle/time": "^0.12.0",
"get-own-property-symbols": "^0.9.2",
"xstream": "*"
}
}