onion/package.json

25 lines
657 B
JSON
Raw Normal View History

2015-05-12 15:28:59 +02:00
{
"name": "onion",
"version": "0.0.0",
"description": "Web client for ascribe",
"main": "server.js",
"dependencies": {
"alt": "^0.16.0",
"react": "^0.12.2"
},
"devDependencies": {
2015-05-13 16:26:12 +02:00
"browserify": "^6.2.0",
"envify": "^3.0.0",
"jest-cli": "^0.4.3",
"reactify": "^0.15.2",
"uglify-js": "~2.4.15",
"watchify": "^2.1.1"
2015-05-12 15:28:59 +02:00
},
"scripts": {
2015-05-13 16:26:12 +02:00
"start": "watchify -o js/bundle.js -v -d js/app.jsx",
"build": "browserify -t [reactify --es6] src/app.jsx > build/app.js",
"test": "jest"
2015-05-12 15:28:59 +02:00
},
"author": "Alberto Granzotto <alberto@ascribe.io>"
}