| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- {
- "name": "cloud-budget",
- "main": "app.js",
- "repository": {
- "type": "git",
- "url": "https://github.com/Febbweiss/CloudBudget"
- },
- "bugs": {
- "url": "https://github.com/Febbweiss/CloudBudget/issues"
- },
- "dependencies": {
- "express": "~4.5.1",
- "mongoose": "~4.0.8",
- "body-parser": "~1.4.2",
- "method-override": "~2.0.2",
- "morgan": "~1.6.0",
- "file-stream-rotator": "~0.0.6",
- "errorhandler": "~1.4.1",
- "jsonwebtoken": "~5.0.4",
- "bcrypt": "~0.8.3",
- "passport": "~0.2.2",
- "passport-local": "~1.0.0",
- "passport-jwt": "~1.1.0"
- },
- "devDependencies": {
- "apidoc": "^0.13.1",
- "chai": "^3.2.0",
- "coveralls": "^2.11.4",
- "istanbul": "^0.3.18",
- "mocha": "~2.2.5",
- "should": "~7.0.2",
- "sinon": "~1.15.4",
- "supertest": "~1.0.1"
- },
- "scripts": {
- "generate-doc": "./node_modules/apidoc/bin/apidoc -i app/ -o public",
- "test-local": "NODE_ENV=test ./node_modules/mocha/bin/mocha test/*",
- "test": "NODE_ENV=test ./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha -- -R spec test/*",
- "start": "node app.js",
- "stop": "pkill -SIGINT CloudBudget"
- },
- "license": "MIT"
- }
|