mirror of https://github.com/kern/filepizza
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
62 lines
2.0 KiB
JSON
62 lines
2.0 KiB
JSON
{
|
|
"name": "filepizza",
|
|
"version": "0.2.4",
|
|
"description": "Free peer-to-peer file transfers in your browser.",
|
|
"scripts": {
|
|
"clean": "rm -rf dist && mkdir -p dist",
|
|
"prepublish": "npm run build:prod",
|
|
"build:prod": "npm run build:prod:server && npm run build:prod:client",
|
|
"build:prod:server": "./node_modules/.bin/babel lib -d dist",
|
|
"build:prod:client": "./node_modules/.bin/browserify lib/client.js -t babelify -t uglifyify | ./node_modules/.bin/uglifyjs -cm > dist/client.js",
|
|
"build:dev": "npm run build:dev:server && npm run build:dev:client",
|
|
"build:dev:server": "./node_modules/.bin/babel lib -d dist -s inline",
|
|
"build:dev:client": "./node_modules/.bin/browserify lib/client.js -t babelify -o dist/client.js -d",
|
|
"watch": "./node_modules/.bin/nodemon -w lib --exec 'npm run build:dev && npm run start'",
|
|
"start": "node index.js"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git@github.com:kern/filepizza.git"
|
|
},
|
|
"author": "Alex Kern <alex@kern.io> (http://kern.io)",
|
|
"license": "BSD-3-Clause",
|
|
"bugs": {
|
|
"url": "https://github.com/kern/filepizza/issues"
|
|
},
|
|
"homepage": "https://github.com/kern/filepizza",
|
|
"dependencies": {
|
|
"alt": "^0.14.4",
|
|
"classnames": "^1.2.0",
|
|
"express": "^4.12.0",
|
|
"express-winston": "^0.3.1",
|
|
"filepizza-socket": "^1.0.0",
|
|
"newrelic": "^1.21.1",
|
|
"nib": "^1.1.0",
|
|
"node-uuid": "^1.4.3",
|
|
"react": "^0.13.0",
|
|
"react-frozenhead": "^0.3.0",
|
|
"react-google-analytics": "^0.2.0",
|
|
"react-router": "^0.13.1",
|
|
"socket.io": "^1.3.5",
|
|
"socket.io-client": "^1.3.5",
|
|
"stylus": "^0.50.0",
|
|
"twilio": "^2.3.0",
|
|
"webrtcsupport": "^2.1.2",
|
|
"winston": "^1.0.1",
|
|
"xkcd-password": "^1.2.0"
|
|
},
|
|
"engines": {
|
|
"node": "0.12.x"
|
|
},
|
|
"preferGlobal": "true",
|
|
"bin": "./index.js",
|
|
"devDependencies": {
|
|
"babel": "^5.8.23",
|
|
"babelify": "^6.3.0",
|
|
"browserify": "^11.0.1",
|
|
"nodemon": "^1.4.1",
|
|
"uglify-js": "^2.4.24",
|
|
"uglifyify": "^3.0.1"
|
|
}
|
|
}
|