-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
51 lines (51 loc) · 1.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
{
"name": "tricycle",
"version": "0.0.1",
"description": "A scratchpad for trying out Cycle.js",
"main": "lib/scratchpad.js",
"files": [
"lib/"
],
"scripts": {
"start": "babel-node server.js",
"test": "mocha --compilers js:babel-core/register",
"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/trycycle.git"
},
"keywords": [
"cycle",
"cycle.js",
"FRP",
"happiness"
],
"author": "Nick Johnstone",
"license": "MIT",
"bugs": {
"url": "https://github.com/Widdershin/trycycle/issues"
},
"homepage": "https://github.com/Widdershin/trycycle",
"dependencies": {
"@cycle/dom": "^17.4.0",
"@cycle/isolate": "^1.4.0",
"@cycle/run": "^3.1.0",
"babel-core": "^6.2.1",
"babel-preset-es2015": "^6.1.18",
"brace": "^0.5.1",
"cycle-restart": "0.0.12",
"lodash": "^3.10.1",
"xstream": "^10.8.0"
},
"devDependencies": {
"babel-cli": "^6.2.0",
"babelify": "^7.2.0",
"browserify": "^12.0.1",
"budo": "^6.0.4",
"garnish": "^4.1.1",
"mocha": "^2.3.4"
}
}