-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.97 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
{
"name": "spindle-ui",
"version": "0.1.1",
"description": "A tiny helper for structuring React components in a way that's easy to create, maintain, reuse, and scale",
"main": "spindle.dist.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "browserify app.js -t babelify --outfile bundle.js",
"prepublish": "babel --source-maps inline --out-file spindle.dist.js spindle.js",
"watch": "watchify examples/main.js -v -d -t babelify --outfile bundle.js",
"watch-counter": "watchify examples/counter/app.js -d -t babelify --outfile bundle.js",
"watch-pair": "watchify examples/pair-of-counters/app.js -d -t babelify --outfile bundle.js",
"watch-n": "watchify examples/n-counters/app.js -d -t babelify --outfile bundle.js",
"watch-sum": "watchify examples/sum-counters/app.js -d -t babelify --outfile bundle.js",
"watch-constrained": "watchify examples/constrained-counters/app.js -d -t babelify --outfile bundle.js",
"watch-wrap": "watchify examples/wrapper/app.js -d -t babelify --outfile bundle.js",
"watch-clock": "watchify examples/clock/app.js -d -t babelify --outfile bundle.js",
"watch-draggable": "watchify examples/draggable/app.js -d -t babelify --outfile bundle.js",
"watch-diceroll": "watchify examples/diceroll/app.js -d -t babelify --outfile bundle.js",
"watch-repo": "watchify examples/repo-info/app.js -d -t babelify --outfile bundle.js"
},
"author": "uniphil",
"license": "GPL",
"peerDependencies": {
"react": "^15.3.1",
"results": "^0.14.0"
},
"devDependencies": {
"babel-cli": "^6.9.0",
"babel-plugin-transform-class-properties": "^6.9.0",
"babel-plugin-transform-object-rest-spread": "^6.8.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.5.0",
"babelify": "^7.3.0",
"browserify": "^13.0.1",
"immutable": "^3.8.1",
"react-dom": "^15.1.0",
"react-immutable-proptypes": "^2.1.0",
"watchify": "^3.7.0"
},
"dependencies": {}
}