forked from cyclejs/examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
28 lines (28 loc) · 903 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
{
"name": "isolated-buttons",
"version": "0.0.0",
"description": "isolate() buttons for nested buttons",
"main": "index.js",
"author": "Tylor Steinberger <tlsteinberger167@gmail.com> (github.com/Tylors)",
"license": "MIT",
"dependencies": {
"@cycle/isolate": "1.4.x",
"@cycle/xstream-run": "3.0.0",
"@cycle/dom": "10.0.0-rc33",
"xstream": "5.0.x"
},
"devDependencies": {
"babel-plugin-transform-object-rest-spread": "^6.6.5",
"babel-preset-es2015": "^6.3.13",
"babel-register": "^6.4.3",
"babelify": "^7.2.0",
"browserify": "^13.0.0",
"mkdirp": "^0.5.1"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prebrowserify": "mkdirp dist",
"browserify": "browserify src/main.js -t babelify --outfile dist/main.js",
"start": "npm install && npm run browserify && echo 'OPEN index.html IN YOUR BROWSER'"
}
}