-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.51 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
{
"name": "y",
"version": "0.0.1",
"description": "Web editor for Helix Pi, written in Cycle.js",
"main": "index.js",
"scripts": {
"test": "mocha --compilers js:babel-core/register",
"autotest": "mocha --compilers js:babel-core/register --watch -R min",
"start": "./node_modules/babel-cli/bin/babel-node.js server.js"
},
"repository": {
"type": "git",
"url": "https://github.com/helix-pi/helix-pi-cycle-editor.git"
},
"keywords": [
"game",
"development",
"cycle.js",
"FRP"
],
"author": "Nick Johnstone",
"license": "MIT",
"bugs": {
"url": "https://github.com/helix-pi/helix-pi-cycle-editor/issues"
},
"homepage": "https://github.com/helix-pi/helix-pi-cycle-editor",
"dependencies": {
"@cycle/core": "^6.0.3",
"@cycle/dom": "^9.2.2",
"@cycle/storage": "^2.0.3",
"babel-plugin-transform-object-rest-spread": "^6.6.5",
"babelify": "^7.1.0",
"cycle-animation-driver": "^0.1.1",
"hyperscript-helpers": "^2.0.1",
"lodash": "^3.10.1",
"rx": "^4.0.6",
"seamless-immutable": "^5.1.1"
},
"devDependencies": {
"babel-cli": "^6.0.14",
"babel-core": "^6.0.14",
"babel-preset-es2015": "^6.0.14",
"browserify": "^12.0.1",
"browserify-hmr": "^0.3.1",
"budo": "^6.0.0",
"cycle-restart": "0.0.14",
"garnish": "^4.0.0",
"mocha": "^2.3.3",
"vdom-query": "0.0.1"
},
"babel": {
"presets": [
"es2015"
]
},
"browserify": {
"transform": [
[
"babelify"
]
]
}
}