24
1
Fork 0
drop.chapril.org-firefoxsend/package.json

67 lines
2.1 KiB
JSON
Raw Normal View History

{
2017-07-11 21:34:49 +02:00
"name": "firefox-send",
2017-06-24 02:55:39 +02:00
"description": "File Sharing Experiment",
2017-07-25 01:34:00 +02:00
"version": "0.2.1",
2017-06-02 22:18:33 +02:00
"author": "Mozilla (https://mozilla.org)",
"dependencies": {
2017-07-25 01:34:00 +02:00
"aws-sdk": "^2.89.0",
"body-parser": "^1.17.2",
"bytes": "^2.5.0",
2017-05-30 18:24:16 +02:00
"connect-busboy": "0.0.2",
"convict": "^3.0.0",
"express": "^4.15.3",
"express-handlebars": "^3.0.0",
"helmet": "^3.8.0",
2017-06-08 22:45:28 +02:00
"mozlog": "^2.1.1",
2017-06-23 19:53:11 +02:00
"raven": "^2.1.0",
2017-07-22 05:00:38 +02:00
"redis": "^2.7.1"
},
"devDependencies": {
"browserify": "^14.4.0",
"eslint": "^4.3.0",
"eslint-plugin-mocha": "^4.11.0",
2017-07-21 00:16:00 +02:00
"eslint-plugin-node": "^5.1.1",
"eslint-plugin-security": "^1.4.0",
2017-06-24 02:55:39 +02:00
"git-rev-sync": "^1.9.1",
2017-07-22 05:00:38 +02:00
"jquery": "^3.2.1",
"jquery-circle-progress": "^1.2.2",
"l20n": "^5.0.0",
2017-06-20 19:21:11 +02:00
"mocha": "^3.4.2",
"npm-run-all": "^4.0.2",
2017-07-21 00:16:00 +02:00
"prettier": "^1.5.3",
2017-06-20 19:21:11 +02:00
"proxyquire": "^1.8.0",
2017-07-22 05:00:38 +02:00
"raven-js": "^3.17.0",
2017-07-25 01:34:00 +02:00
"selenium-webdriver": "^3.5.0",
2017-07-21 00:16:00 +02:00
"sinon": "^2.3.8",
"stylelint": "^7.13.0",
"stylelint-config-standard": "^16.0.0",
"supertest": "^3.0.0",
2017-07-22 05:00:38 +02:00
"testpilot-ga": "^0.3.0",
"uglifyify": "^4.0.3"
2017-06-02 22:18:33 +02:00
},
2017-06-07 20:26:40 +02:00
"engines": {
"node": ">=8.0.0"
},
2017-07-11 21:34:49 +02:00
"homepage": "https://github.com/mozilla/send/",
2017-06-02 22:18:33 +02:00
"license": "MPL-2.0",
2017-07-11 21:34:49 +02:00
"repository": "mozilla/send",
"availableLanguages": ["en-US"],
2017-06-02 22:18:33 +02:00
"scripts": {
"build": "npm-run-all build:*",
"build:upload": "browserify frontend/src/upload.js -g uglifyify -o public/upload.js",
"build:download": "browserify frontend/src/download.js -g uglifyify -o public/download.js",
"build:version": "node scripts/version",
2017-07-22 05:00:38 +02:00
"build:l10n": "cp node_modules/l20n/dist/web/l20n.min.js public",
"dev": "npm run build && npm start",
"format": "prettier '{frontend/src/,scripts/,server/,test/**/}*.js' 'public/*.css' --single-quote --write",
2017-06-09 19:49:53 +02:00
"lint": "npm-run-all lint:*",
"lint:css": "stylelint 'public/*.css'",
"lint:js": "eslint .",
2017-07-11 21:34:49 +02:00
"start": "node server/server",
"test": "npm-run-all test:*",
"test:unit": "mocha test/unit",
"test:server": "mocha test/server",
"test:browser": "browserify test/frontend/frontend.bundle.js -o test/frontend/bundle.js -d && node test/frontend/driver.js"
}
}