This repository has been archived by the owner on Apr 20, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
19 changed files
with
613 additions
and
1,035 deletions.
There are no files selected for viewing
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "generator-ts-generator", | ||
"version": "1.2.3", | ||
"version": "1.3.0", | ||
"description": "A Generator for Yeoman Generators Written in TypeScript.", | ||
"author": "Manuel Thalmann <[email protected]>", | ||
"license": "MIT", | ||
|
@@ -19,17 +19,18 @@ | |
}, | ||
"homepage": "https://github.com/manuth/TSGeneratorGenerator#readme", | ||
"scripts": { | ||
"watch": "tsc -p . --watch", | ||
"compile": "tsc -p .", | ||
"watch": "tsc -p . --watch", | ||
"clean": "rimraf ./lib", | ||
"lint": "tslint -p ./ -t verbose", | ||
"test": "mocha", | ||
"prepare": "npm run compile" | ||
"prepare": "npm run clean && npm run compile" | ||
}, | ||
"dependencies": { | ||
"chalk": "^2.4.1", | ||
"dedent": "^0.7.0", | ||
"extended-yo-generator": "^1.0.2", | ||
"fs-extra": "^7.0.1", | ||
"inquirer": "^6.2.0", | ||
"lodash.camelcase": "^4.3.0", | ||
"lodash.kebabcase": "^4.1.1", | ||
"yeoman-generator": "^3.1.1", | ||
|
@@ -38,19 +39,19 @@ | |
"devDependencies": { | ||
"@types/dedent": "^0.7.0", | ||
"@types/fs-extra": "^5.0.4", | ||
"@types/inquirer": "0.0.43", | ||
"@types/lodash.camelcase": "^4.3.4", | ||
"@types/lodash.kebabcase": "^4.1.4", | ||
"@types/mocha": "^5.2.5", | ||
"@types/node": "^10.12.9", | ||
"@types/node": "^10.12.10", | ||
"@types/yeoman-generator": "^3.0.1", | ||
"@types/yeoman-test": "^1.7.4", | ||
"@types/yosay": "0.0.29", | ||
"mocha": "^5.2.0", | ||
"npm": "^6.4.1", | ||
"rimraf": "^2.6.2", | ||
"tslint": "^5.11.0", | ||
"typescript": "^3.1.6", | ||
"typescript-tslint-plugin": "0.1.0", | ||
"typescript-tslint-plugin": "^0.1.0", | ||
"yeoman-test": "^1.9.1", | ||
"yo": "^2.0.5" | ||
} | ||
|
Oops, something went wrong.