-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 942 Bytes
/
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
{
"name": "cycle-rollup-example",
"version": "0.0.1",
"private": true,
"author": "arlair",
"license": "MIT",
"dependencies": {
"@cycle/core": "6.0.0-rc2",
"@cycle/dom": "8.0.0-rc8",
"@cycle/isolate": "1.0.x",
"rx": "^4.0.6"
},
"devDependencies": {
"babel": "5.6.x",
"babel-preset-es2015-rollup": "^1.0.0",
"babelify": "6.1.x",
"browserify": "11.0.1",
"mkdirp": "0.5.x",
"rollup": "^0.21.2",
"rollup-plugin-commonjs": "^1.4.0",
"rollup-plugin-npm": "^1.1.0",
"rollup-plugin-typescript": "^0.2.1",
"rollup-plugin-babel": "^2.2.0"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prebrowserify": "mkdirp dist",
"browserify": "browserify src/main.js -t babelify --outfile dist/main.js",
"rollup": "rollup -c -o dist/main.js src/main.js",
"start": "npm install && npm run rollup && echo 'OPEN index.html IN YOUR BROWSER'"
}
}