generator-node-boilerplate
Version:
Web application generator for Yeoman
79 lines • 2.15 kB
JSON
{
"name": "<%= _.slugify(appName) %>",
"description": "Node.js application",
"version": "0.0.0",
"main": "server.coffee",
"homepage": "https://github.com/<%= _.slugify(githubUser) %>/<%= _.slugify(appName) %>",
"author": {
"name": "",
"email": "",
"url": ""
},
"repository": {
"type": "git",
"url": "git://github.com/<%= _.slugify(githubUser) %>/<%= _.slugify(appName) %>"
},
"bugs": {
"url": "https://github.com/<%= _.slugify(githubUser) %>/<%= _.slugify(appName) %>/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/<%= _.slugify(githubUser) %>/<%= _.slugify(appName) %>/blob/master/LICENSE"
}
],
"engines": {
"node": ">=0.8.0"
},
"scripts": {
"test": "grunt test",
"start": "coffee server.coffee"
},
"dependencies": {
"coffee-script": "~1.7.x",
"express": "~4.5.x",
"express-namespace": "~0.1.x",
"body-parser": "~1.4.x",
"compression": "~1.0.x",
"connect-timeout": "~1.1.x",
"cookie-parser": "~1.3.x",
"cookie-session": "~1.0.x",
"csurf": "~1.3.x",
"errorhandler": "~1.1.x",
"express-session": "1.6.x",
"method-override": "~2.0.x",
"morgan": "~1.1.x",
"response-time": "2.0.x",
"serve-favicon": "~2.0.x",
"serve-index": "~1.1.x",
"serve-static": "~1.3.x",
"vhost": "~2.0.x",
"mongoose": "~3.8.x",
"chalk": "~0.5.x",
"jade": "~1.3.x"
},
"devDependencies": {
"mocha": "~1.20.x",
"chai": "~1.9.x",
"sinon": "~1.10.x",
"supertest": "~0.13.x",
"grunt": "~0.4.x",
"grunt-cli": "~0.1.x",
"grunt-autoprefixer": "~0.8.x",
"grunt-coffeelint": "~0.0.x",
"grunt-contrib-clean": "~0.5.x",
"grunt-contrib-coffee": "~0.10.x",
"grunt-contrib-concat": "~0.4.x",
"grunt-contrib-copy": "~0.5.x",
"grunt-contrib-cssmin": "~0.10.x",
"grunt-contrib-sass": "~0.7.x",
"grunt-contrib-uglify": "~0.5.x",
"grunt-contrib-watch": "~0.6.x",
"grunt-ember-templates": "~0.4.x",
"grunt-express-server": "~0.4.x",
"grunt-simple-mocha": "~0.4.x"
},
"keywords": [
"<%= _.slugify(appName) %>"
]
}