-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.31 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
{
"name": "cycle",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"eslint": "eslint src/",
"mocha": "mocha --compilers js:babel-core/register src",
"test": "npm run eslint && npm run mocha",
"clean": "rm -rf dist/*",
"build_main": "browserify src/main.js --debug -t [ babelify --presets [ es2015 ] ] -o dist/main.js",
"build_worker": "browserify src/worker.js --debug -t [ babelify --presets [ es2015 ] ] -o dist/worker.js",
"build": "npm run build_main && npm run build_worker"
},
"author": "Jeremy Feinstein <[email protected]>",
"license": "ISC",
"dependencies": {
"@cycle/core": "^6.0.0",
"@cycle/dom": "^9.0.1",
"dom-delegator": "^13.1.0",
"html-to-vdom": "^0.7.0",
"rx": "^4.0.7",
"rx-dom": "^7.0.3",
"underscore": "^1.8.3",
"vdom-as-json": "^1.0.8",
"vdom-serialized-patch": "^1.0.3",
"virtual-dom": "^2.1.1",
"vtree-select": "^2.0.0"
},
"devDependencies": {
"autoprefixer-loader": "^3.1.0",
"babel": "^6.3.26",
"babel-core": "^6.4.0",
"babel-preset-es2015": "^6.3.13",
"babelify": "^7.2.0",
"browserify": "^13.0.0",
"eslint": "^1.10.3",
"eslint-config-es": "^0.5.0",
"eslint-plugin-extended": "^0.1.1",
"eslint-plugin-mocha": "^1.1.0",
"mocha": "^2.3.4"
}
}