103 lines
2.9 KiB
JSON
103 lines
2.9 KiB
JSON
{
|
|
"name": "Cloudron",
|
|
"description": "Main code for a cloudron",
|
|
"version": "0.0.1",
|
|
"private": "true",
|
|
"author": {
|
|
"name": "Cloudron authors"
|
|
},
|
|
"repository": {
|
|
"type": "git"
|
|
},
|
|
"engines": [
|
|
"node >= 0.12.0"
|
|
],
|
|
"bin": {
|
|
"cloudron": "./app.js"
|
|
},
|
|
"dependencies": {
|
|
"async": "^1.2.1",
|
|
"aws-sdk": "^2.1.46",
|
|
"body-parser": "^1.13.1",
|
|
"cloudron-manifestformat": "^1.7.0",
|
|
"connect-ensure-login": "^0.1.1",
|
|
"connect-lastmile": "0.0.13",
|
|
"connect-timeout": "^1.5.0",
|
|
"cookie-parser": "^1.3.5",
|
|
"cookie-session": "^1.1.0",
|
|
"cron": "^1.0.9",
|
|
"csurf": "^1.6.6",
|
|
"db-migrate": "^0.9.2",
|
|
"debug": "^2.2.0",
|
|
"dockerode": "^2.2.2",
|
|
"ejs": "^2.2.4",
|
|
"ejs-cli": "^1.0.1",
|
|
"express": "^4.12.4",
|
|
"express-session": "^1.11.3",
|
|
"hat": "0.0.3",
|
|
"json": "^9.0.3",
|
|
"ldapjs": "^0.7.1",
|
|
"memorystream": "^0.3.0",
|
|
"mime": "^1.3.4",
|
|
"morgan": "^1.6.0",
|
|
"multiparty": "^4.1.2",
|
|
"mysql": "^2.7.0",
|
|
"native-dns": "^0.7.0",
|
|
"node-uuid": "^1.4.3",
|
|
"nodemailer": "^1.3.0",
|
|
"nodemailer-smtp-transport": "^1.0.3",
|
|
"oauth2orize": "^1.0.1",
|
|
"once": "^1.3.2",
|
|
"passport": "^0.2.2",
|
|
"passport-http": "^0.2.2",
|
|
"passport-http-bearer": "^1.0.1",
|
|
"passport-local": "^1.0.0",
|
|
"passport-oauth2-client-password": "^0.1.2",
|
|
"password-generator": "^1.0.0",
|
|
"proxy-middleware": "^0.13.0",
|
|
"safetydance": "0.0.19",
|
|
"semver": "^4.3.6",
|
|
"serve-favicon": "^2.2.0",
|
|
"split": "^1.0.0",
|
|
"superagent": "~0.21.0",
|
|
"supererror": "^0.7.0",
|
|
"tail-stream": "https://registry.npmjs.org/tail-stream/-/tail-stream-0.2.1.tgz",
|
|
"underscore": "^1.7.0",
|
|
"valid-url": "^1.0.9",
|
|
"validator": "^3.30.0"
|
|
},
|
|
"devDependencies": {
|
|
"apidoc": "*",
|
|
"bootstrap-sass": "^3.3.3",
|
|
"del": "^1.1.1",
|
|
"expect.js": "*",
|
|
"gulp": "^3.8.11",
|
|
"gulp-autoprefixer": "^2.3.0",
|
|
"gulp-concat": "^2.4.3",
|
|
"gulp-ejs": "^1.0.0",
|
|
"gulp-minify-css": "^1.1.3",
|
|
"gulp-sass": "^2.0.1",
|
|
"gulp-serve": "^1.0.0",
|
|
"gulp-sourcemaps": "^1.5.2",
|
|
"gulp-uglify": "^1.1.0",
|
|
"hock": "~1.2.0",
|
|
"istanbul": "*",
|
|
"js2xmlparser": "^1.0.0",
|
|
"mocha": "*",
|
|
"nock": "^2.6.0",
|
|
"node-sass": "^3.0.0-alpha.0",
|
|
"redis": "^0.12.1",
|
|
"sinon": "^1.12.2",
|
|
"yargs": "^3.15.0"
|
|
},
|
|
"scripts": {
|
|
"migrate_local": "DATABASE_URL=mysql://root:@localhost/box node_modules/.bin/db-migrate up",
|
|
"migrate_test": "BOX_ENV=test DATABASE_URL=mysql://root:@localhost/boxtest node_modules/.bin/db-migrate up",
|
|
"test": "npm run migrate_test && src/test/setupTest && BOX_ENV=test ./node_modules/istanbul/lib/cli.js test $1 ./node_modules/mocha/bin/_mocha -- -R spec ./src/test ./src/routes/test",
|
|
"postmerge": "/bin/true",
|
|
"precommit": "/bin/true",
|
|
"prepush": "npm test",
|
|
"webadmin": "node_modules/.bin/gulp"
|
|
}
|
|
}
|