UNPKG

generator-cmj

Version:

A node generator for Yeoman forked from generator-node-coffee

50 lines (49 loc) 1.27 kB
{ "name": "<%= slugname %>", "version": "0.0.0", "main": "dist/index.js", "description": "<%= props.description %>", "homepage": "<%= props.homepage %>", "bugs": "<%= repoUrl %>/issues", "author": { "name": "<%= props.authorName %>", "email": "<%= props.authorEmail %>"<% if (props.authorUrl) { %>, "url": "<%= props.authorUrl %>"<% } %> }, "repository": { "type": "git", "url": "<%= repoUrl %>" }, "licenses": [ { "type": "<%= props.license %>" } ], "scripts": { "start": "nodemon src/index.coffee" }, "dependencies": { <% if (props.models) { %>"mongoose": "^4.0.1",<% } %> "body-parser": "^1.12.3", "express": "^4.12.3", "express-session": "^1.11.1", "express-static": "^1.0.3", "ejs": "^2.3.1", <% if (props.frontend) { %> "chalk": "^1.0.0", "node-sass-middleware": "^0.5.0"<% } else {%> "chalk": "^1.0.0"<% } %> }, "devDependencies": { "matchdep": "~0.1.1", "grunt-contrib-jshint": "~0.6.0", "grunt-contrib-watch": "~0.5.0", "grunt-contrib-coffee": "~0.7.0", "grunt-simple-mocha": "~0.4.0", "grunt-contrib-clean": "~0.5.0", "sinon-chai": "~2.4.0", "chai": "~1.7.2", "mocha": "~1.12.1", "sinon": "~1.7.3" } }