Files
cloudron-box/installer/package.json

48 lines
1.1 KiB
JSON
Raw Normal View History

2015-08-04 16:29:49 -07:00
{
"name": "installer",
"description": "Cloudron Installer",
"version": "0.0.1",
"private": "true",
"author": {
"name": "Cloudron authors"
},
"repository": {
"type": "git"
},
"engines": [
2015-11-12 12:17:14 -08:00
"node >=4.0.0 <=4.1.1"
2015-08-04 16:29:49 -07:00
],
"dependencies": {
2015-11-11 15:48:32 -08:00
"async": "^1.5.0",
2015-08-04 16:29:49 -07:00
"body-parser": "^1.12.0",
2015-11-11 15:48:32 -08:00
"connect-lastmile": "0.0.13",
2015-08-04 16:29:49 -07:00
"debug": "^2.1.1",
"express": "^4.11.2",
"json": "^9.0.3",
"morgan": "^1.5.1",
2015-11-11 15:48:32 -08:00
"proxy-middleware": "^0.15.0",
"safetydance": "0.0.19",
2016-01-02 15:28:49 +01:00
"semver": "^5.1.0",
2015-09-17 16:21:18 -07:00
"superagent": "^0.21.0"
2015-08-04 16:29:49 -07:00
},
"devDependencies": {
2015-11-23 09:21:10 -08:00
"colors": "^1.1.2",
2015-10-12 11:36:46 -07:00
"commander": "^2.8.1",
2015-08-04 16:29:49 -07:00
"expect.js": "^0.3.1",
"istanbul": "^0.3.5",
"lodash": "^3.2.0",
"mocha": "^2.1.0",
2015-10-12 11:36:46 -07:00
"nock": "^0.59.1",
2015-11-23 13:15:56 -08:00
"sleep": "^3.0.0",
2015-11-23 09:21:10 -08:00
"superagent-sync": "^0.2.0",
2015-10-12 11:36:46 -07:00
"supererror": "^0.7.0",
"yesno": "0.0.1"
2015-08-04 16:29:49 -07:00
},
"scripts": {
"test": "NODE_ENV=test ./node_modules/istanbul/lib/cli.js test $1 ./node_modules/mocha/bin/_mocha -- -R spec ./src/test",
"precommit": "/bin/true",
"prepush": "npm test",
"postmerge": "/bin/true"
}
}