UNPKG

generator-bitch

Version:

A simple generator (for Yeoman) to scaffolding web applications, just frontend stack

74 lines (73 loc) 2.69 kB
{ "name": "<%= applicationSlug %>", "version": "1.0.0", "private": true, "scripts": { "start": "scripts/start.sh", "postinstall": "scripts/bundle.sh", "bundle": "scripts/bundle.sh", "test": "scripts/test.sh" }, "dependencies": {<% if (appFramework === 'angular') { %> "angular": "~1.6.3"<% if (ngAnimate) { %>, "angular-animate": "~1.6.3"<% } %><% if (ngCookies) { %>, "angular-cookies": "~1.6.3"<% } %><% if (ngResource) { %>, "angular-resource": "~1.6.3"<% } %><% if (ngSanitize) { %>, "angular-sanitize": "~1.6.3"<% } %><% if (ngTouch) { %>, "angular-touch": "~1.6.3"<% } %><% if (angularRoute === 'uiRouter') { %>, "angular-ui-router": "^0.2.15"<% } %><% if (angularRoute === 'ngRoute') { %>, "angular-route": "~1.6.3"<% } %><% } %> }, "devDependencies": {<% if (appFramework === 'angular') { %> "angular-mocks": "~1.6.3",<% } %> "babel-preset-es2015": "^6.6.0", "babelify": "^7.3.0", "browserify": "^13.0.0", "istanbul": "^0.4.0", "mocha": "^2.3.3", "chai": "^3.4.0", "chai-as-promised": "^5.3.0", "gulp-autoprefixer": "^2.3.1", "gulp-clean-css": "~3.0.2", "gulp-changed": "^1.3.2", "gulp-concat": "^2.6.0",<% if (viewEngine === 'pug') { %> "gulp-pug": "^3.2.0",<% } %><% if (viewEngine === 'ejs') { %> "gulp-ejs": "^1.1.1",<% } %><% if (viewEngine === 'html') { %> "gulp-html-lint": "^0.0.1",<% } %> "browser-sync": "^2.8.0", "compression": "^1.6.2", "gulp-plumber": "^1.0.1",<% if (preprocessor === 'sass') { %> "gulp-sass": "^3.1.0",<% } %><% if (preprocessor === 'less') { %> "gulp-less": "^3.0.3",<% } %><% if (preprocessor === 'stylus') { %> "gulp-stylus": "^2.0.6",<% } %> "gulp-babel": "^6.1.2",<% if (appFramework === 'angular') { %> "gulp-ng-annotate": "^1.1.0", "connect-history-api-fallback": "^1.1.0", "jasmine": "^2.3.2", "karma": "^0.13.10", "karma-mocha": "^0.2.0", "karma-chai": "^0.1.0", "karma-mocha-reporter": "^1.1.1", "phantomjs": "^1.9.18", "karma-phantomjs-launcher": "^0.2.1", "karma-browserify": "^5.0.4", "karma-coverage": "^0.5.5", "karma-chai-as-promised": "^0.1.2", "gulp-flatten": "^0.2.0", "eslint-plugin-angular": "^1.0.0",<% } %> "gulp-eslint": "^3.0.1", "gulp-uglify": "^1.2.0", "gulp-sourcemaps": "^2.4.1", "pngsmith": "^0.1.3", "package-files": "~0.0.2", "gulp.spritesmith": "^3.8.2", "spritesmith": "^1.3.2", "gulp": "^3.9.0", "require-all": "^2.0.0", "webpack": "^2.2.1", "webpack-stream": "^3.2.0", "gulp-util": "^3.0.6", "yargs": "^3.15.0", "shell-arguments": "^1.1.9" } }