forked from projen/projen
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: support committing package.json at the project level
for project like projen itself.
- Loading branch information
Elad Ben-Israel
committed
May 12, 2020
1 parent
fcc9fcc
commit 3ff069c
Showing
10 changed files
with
196 additions
and
78 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
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
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
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
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
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
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
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
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 |
---|---|---|
@@ -0,0 +1,60 @@ | ||
{ | ||
"//": "Generated by projen. To modify, edit \"projen.js\" and run \"projen\"", | ||
"name": "projen", | ||
"description": "A new generation of project generators", | ||
"main": "lib/index.js", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/eladb/projen.git" | ||
}, | ||
"bin": { | ||
"projen": "bin/projen" | ||
}, | ||
"scripts": { | ||
"projen": "node projen.js && yarn install", | ||
"test": "yarn eslint", | ||
"bump": "standard-version", | ||
"compile": "jsii", | ||
"watch": "jsii -w", | ||
"compat": "npx jsii-diff npm:$(node -p \"require('./package.json').name\")", | ||
"package": "jsii-pacmak", | ||
"build": "yarn compile && yarn test && yarn run package", | ||
"eslint": "eslint . --ext .ts" | ||
}, | ||
"author": { | ||
"name": "Elad Ben-Israel", | ||
"email": "benisrae@amazon.com" | ||
}, | ||
"devDependencies": { | ||
"constructs": "2.0.1", | ||
"standard-version": "^8.0.0", | ||
"jsii": "^1.5.0", | ||
"jsii-diff": "^1.5.0", | ||
"jsii-pacmak": "^1.5.0", | ||
"jsii-release": "^0.1.5", | ||
"@types/node": "^13.13.5", | ||
"@typescript-eslint/eslint-plugin": "^2.31.0", | ||
"@typescript-eslint/parser": "^2.19.2", | ||
"eslint": "^6.8.0", | ||
"eslint-import-resolver-node": "^0.3.3", | ||
"eslint-import-resolver-typescript": "^2.0.0", | ||
"eslint-plugin-import": "^2.20.2" | ||
}, | ||
"peerDependencies": { | ||
"constructs": "^2.0.1" | ||
}, | ||
"dependencies": { | ||
"yaml": "^1.9.2" | ||
}, | ||
"bundledDependencies": [ | ||
"yaml" | ||
], | ||
"license": "Apache-2.0", | ||
"version": "0.1.7", | ||
"types": "lib/index.d.ts", | ||
"stability": "experimental", | ||
"jsii": { | ||
"outdir": "dist", | ||
"targets": {} | ||
} | ||
} |
Oops, something went wrong.