Files
cloudron-box/package.json
T
Girish Ramakrishnan 8c71c038b1 Revert 676a1adff1
Leave it to the app to copy it's data into /app/data as needed.
There are many advantages to this approach:
1. The app won't rely needlessly on some initial data in /app/data.
This means we can clear the data dir should the user ask to and the
app will work as expected.

2. box code will now just work on the Mac :)
2014-06-10 23:47:31 -07:00

65 lines
1.5 KiB
JSON

{
"name": "yellowtent",
"description": "Yellow tent",
"version": "0.0.1",
"private": "true",
"author": {
"name": "Yellow tent authors",
"email": "doesntexist@gmail.com"
},
"repository": {
"type": "git",
"url": "https://github.com/gramakri/yellowtent.git"
},
"engines": [
"node >= 0.10.0"
],
"bin": {
"yellowtent": "./server.js"
},
"dependencies": {
"async": "^0.6.2",
"commander": "^2.2.0",
"connect-ensure-login": "^0.1.1",
"debug": "^0.8.0",
"dockerode": "^1.3.0",
"ejs": "^1.0.0",
"encfs": "^0.1.1",
"express": "4.2.0",
"js-yaml": "^3.0.2",
"mime": "^1.2.11",
"mkdirp": "^0.3.5",
"node-uuid": "^1.4.1",
"oauth2orize": "^1.0.1",
"once": "^1.3.0",
"optimist": "^0.6.1",
"passport": "^0.2.0",
"passport-http": "^0.2.2",
"passport-http-bearer": "^1.0.1",
"passport-local": "^1.0.0",
"passport-oauth2-client-password": "^0.1.1",
"readdirp": "^1.0.1",
"rimraf": "^2.2.6",
"safetydance": "0.0.11",
"superagent": "^0.17.0",
"ursa": "^0.8.0",
"morgan": "1.0.1",
"connect-timeout": "1.1.0",
"express-session": "1.1.0",
"serve-favicon": "2.0.0",
"cookie-parser": "1.1.0",
"body-parser": "1.2.0",
"multiparty": "3.2.6",
"sqlite3": "2.2.3"
},
"devDependencies": {
"mocha": "*",
"istanbul": "*",
"apidoc": "*",
"expect.js": "*"
},
"scripts": {
"test": "./node_modules/istanbul/lib/cli.js test $1 ./node_modules/mocha/bin/_mocha -- -R spec ./src/test ./src/routes/test"
}
}