fex
Version:
A simple command line interface that helps you develop and test Angularjs project.
55 lines (51 loc) • 1.43 kB
JSON
{
"name": "<%- appName %>",
"version": "<%- appVersion %>",
"description": "<%- appDescription %>",
"repository": {
"type": "git",
"url": "#"
},
"author": {
"name": "<%- authorName %>",
"email": "<%- authorEmail %>"
},
"license": "<%- appLicense %>",
"devDependencies": {
"body-parser": "^1.9.2",
"bower": "~1.3.1",
"coffee-script": "~1.8.0",
"colors": "^1.0.3",
"express": "^4.10.1",
"fex-util": "0.0.1",
"fs-extra": "^0.12.0",
"gulp": "~3.8.0",
"gulp-clean": "^0.3.1",
"gulp-coffee": "^2.2.0",
"gulp-compile-js": "0.0.3",
"gulp-concat": "^2.4.1",
"gulp-sass": "^1.1.0",
"gulp-sourcemaps": "^1.2.8",
"gulp-uglify": "^1.0.1",
"gulp-util": "^3.0.1",
"gulp-watch": "^1.1.0",
"karma": "^0.12.24",
"karma-chrome-launcher": "^0.1.5",
"karma-jasmine": "^0.2.3",
"karma-junit-reporter": "^0.2.2",
"run-sequence": "^1.0.1",
"underscore": "^1.7.0",
"underscore.string": "^2.3.3"
},
"scripts": {
"postinstall": "bower install",
"prestart": "npm install",
"start": "node server.js ",
"pretest": "npm install",
"test": "karma start karma.conf.js --single-run",
"predev": " npm install ",
"dev": "gulp --gulpfile gulpfile.js ",
"prebuild": " npm install ",
"build": " gulp --gulpfile gulpfile.js build"
}
}