Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
generator-angular-fullstack/package.json
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
117 lines (117 sloc)
3.56 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "name": "generator-angular-fullstack", | |
| "version": "5.0.0-rc.4", | |
| "description": "Yeoman generator for creating MEAN stack applications, using MongoDB, Express, AngularJS, and Node", | |
| "keywords": [ | |
| "yeoman-generator", | |
| "mean", | |
| "mongodb", | |
| "angularjs", | |
| "express", | |
| "scaffold", | |
| "fullstack", | |
| "framework", | |
| "component", | |
| "front-end", | |
| "app" | |
| ], | |
| "homepage": "https://github.com/angular-fullstack/generator-angular-fullstack", | |
| "bugs": "https://github.com/angular-fullstack/generator-angular-fullstack/issues", | |
| "author": "Andrew Koroluk <koroluka@gmail.com> (http://andrewk.me/)", | |
| "contributors": [ | |
| "Tyler Henkel (http://tylerhenkel.com/)", | |
| "Cody Mize <me@codymize.com> (http://codymize.com/)", | |
| "Brian Ford <btford@umich.edu> (http://briantford.com/)", | |
| "Pascal Hartig <passy@twitter.com> (http://passy.me/)", | |
| "Eddie Monge (http://eddiemonge.com)", | |
| "Sindre Sorhus <sindresorhus@gmail.com> (https://twitter.com/sindresorhus)" | |
| ], | |
| "repository": { | |
| "type": "git", | |
| "url": "git://github.com/angular-fullstack/generator-angular-fullstack.git" | |
| }, | |
| "scripts": { | |
| "pre-test": "gulp updateFixtures:test && gulp installFixtures && gulp build", | |
| "test": "mocha --require should --require @babel/register --require ./mocha.conf --reporter spec --timeout 120000 test/pre.test.js test/*.test.js", | |
| "prepublish": "gulp build", | |
| "build": "gulp build" | |
| }, | |
| "dependencies": { | |
| "@babel/core": "^7.6.4", | |
| "@babel/plugin-proposal-class-properties": "^7.5.5", | |
| "@babel/plugin-syntax-flow": "^7.2.0", | |
| "@babel/plugin-transform-flow-strip-types": "^7.6.3", | |
| "@babel/preset-env": "^7.6.3", | |
| "@babel/register": "^7.6.2", | |
| "babel-eslint": "^10.0.3", | |
| "bluebird": "^3.4.5", | |
| "chalk": "^2.1.0", | |
| "eslint": "^6.6.0", | |
| "generator-angular-fullstack-component": "~1.0.1", | |
| "glob": "^7.0.5", | |
| "gulp-eslint": "^6.0.0", | |
| "gulp-filter": "^6.0.0", | |
| "gulp-html2jade": "^1.1.2", | |
| "gulp-rename": "^1.2.2", | |
| "gulp-tap": "^1.0.1", | |
| "insight": "~0.10.1", | |
| "jscodeshift": "^0.3.30", | |
| "lodash": "^4.17.15", | |
| "semver": "^5.1.0", | |
| "underscore.string": "^3.1.1", | |
| "yeoman-generator": "2.0.4", | |
| "yeoman-welcome": "^1.0.1" | |
| }, | |
| "devDependencies": { | |
| "@types/gulp": "^4.0.6", | |
| "@types/gulp-babel": "^6.1.29", | |
| "@types/gulp-gh-pages": "0.0.32", | |
| "@types/gulp-if": "0.0.33", | |
| "@types/gulp-mocha": "0.0.32", | |
| "@types/gulp-plumber": "0.0.32", | |
| "@types/gulp-util": "^3.0.34", | |
| "@types/lazypipe": "0.0.31", | |
| "@types/merge-stream": "^1.1.2", | |
| "@types/node": "^12.11.0", | |
| "@types/shelljs": "^0.8.5", | |
| "chai": "^4.1.2", | |
| "david": "^11.0.0", | |
| "del": "^4.1.1", | |
| "grunt": "^1.0.1", | |
| "grunt-build-control": "^0.7.0", | |
| "grunt-david": "~0.7.0", | |
| "grunt-release": "^0.14.0", | |
| "gulp": "^4.0.2", | |
| "gulp-babel": "^8.0.0", | |
| "gulp-cli": "^2.2.0", | |
| "gulp-conventional-changelog": "^2.0.23", | |
| "gulp-gh-pages": "^0.5.4", | |
| "gulp-if": "^3.0.0", | |
| "gulp-mocha": "^6.0.0", | |
| "gulp-plumber": "^1.1.0", | |
| "gulp-util": "^3.0.7", | |
| "jit-grunt": "~0.10.0", | |
| "lazypipe": "^1.0.1", | |
| "mem-fs-editor": "4.0.0", | |
| "merge-stream": "^1.0.0", | |
| "minimatch": "^3.0.2", | |
| "mocha": "^5.2.0", | |
| "q": "^1.0.1", | |
| "recursive-readdir": "^2.0.0", | |
| "run-sequence": "^2.1.0", | |
| "shelljs": "^0.8.2", | |
| "should": "^12.0.0", | |
| "ts-node": "^8.4.1", | |
| "typescript": "^3.6.4", | |
| "yeoman-assert": "^3.1.1", | |
| "yeoman-test": "^1.7.2" | |
| }, | |
| "peerDependencies": { | |
| "yo": ">= 1.7.1" | |
| }, | |
| "engines": { | |
| "node": ">= 10", | |
| "npm": ">= 6" | |
| }, | |
| "license": "BSD-2-Clause" | |
| } |