generator-landmark
Version:
A LandmarkJS Project Generator for Yeoman
42 lines (41 loc) • 1.1 kB
JSON
{
"name": "<%= _.slugify(projectName) %>",
"version": "0.0.0",
"private": true,
"dependencies": {
"landmark-serve": "~0.1.29",
"async": "~0.9.0",
"underscore": "~1.6.0",<% if (viewEngine === 'hbs') { %>
"moment": "~2.7.0",
"express3-handlebars": "~0.5.0",
"handlebars": "^2.0.0-alpha.2",<% } %>
"dotenv": "0.4.0"
},<% if (taskRunner === 'grunt') { %>
"devDependencies": {
"grunt": "~0.4.4",
"grunt-express-server": "~0.4.17",
"grunt-contrib-watch": "~0.6.1",
"grunt-contrib-jshint": "~0.7.1",
"jshint-stylish": "~0.1.3",
"load-grunt-tasks": "~0.4.0",
"grunt-node-inspector": "~0.1.5",
"time-grunt": "~0.3.1",
"grunt-concurrent": "~0.5.0",
"grunt-nodemon": "~0.2.1",
"open": "0.0.5"
},<% } else if (taskRunner === 'gulp') { %>
"devDependencies": {
"gulp": "~3.6.2",
"gulp-jshint": "~1.6.1",
"jshint-stylish": "~0.1.3",
"gulp-watch": "~0.6.5"
},<% } %>
"engines": {
"node": ">=0.10.22",
"npm": ">=1.3.14"
},
"scripts": {
"start": "node landmark.js"
},
"main": "landmark.js"
}