forked from projen/projen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
193 lines (193 loc) · 5.45 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
{
"//": "~~ Generated by projen. To modify, edit .projenrc.js and run \"npx projen\".",
"name": "projen",
"description": "A new generation of project generators",
"repository": {
"type": "git",
"url": "https://github.com/projen/projen.git"
},
"bin": {
"projen": "bin/projen"
},
"scripts": {
"start": "npx projen start -i",
"projen": "yarn compile && node .projenrc.js",
"no-changes": "(git log --oneline -1 | grep -q \"chore(release):\") && echo \"No changes to release.\"",
"bump": "yarn run --silent no-changes || standard-version",
"release": "yarn run --silent no-changes || (yarn run bump && git push --follow-tags origin master)",
"test": "jest --passWithNoTests --updateSnapshot && yarn run eslint",
"test:watch": "jest --watch",
"test:update": "jest --updateSnapshot",
"projen:upgrade": "yarn upgrade -L projen && CI=\"\" yarn projen",
"compile": "jsii --silence-warnings=reserved-word --no-fix-peer-dependencies && jsii-docgen",
"watch": "jsii -w --silence-warnings=reserved-word --no-fix-peer-dependencies",
"build": "yarn run compile && yarn run test && yarn run package && mv README.md README.md.bak && cat README.md.bak | npx markmac > README.md && rm README.md.bak",
"package": "jsii-pacmak",
"eslint": "eslint --ext .ts,.tsx --fix --no-error-on-unmatched-pattern src test",
"compat": "npx jsii-diff npm:$(node -p \"require('./package.json').name\") -k --ignore-file .compatignore || (echo \"\nUNEXPECTED BREAKING CHANGES: add keys such as 'removed:constructs.Node.of' to .compatignore to skip.\n\" && exit 1)",
"docgen": "jsii-docgen"
},
"author": {
"name": "Elad Ben-Israel",
"email": "[email protected]",
"organization": false
},
"devDependencies": {
"@types/fs-extra": "^8",
"@types/glob": "^7.1.3",
"@types/inquirer": "^7.3.1",
"@types/jest": "^26.0.7",
"@types/node": "^10.17.0",
"@types/semver": "^7.3.4",
"@types/yargs": "^15.0.7",
"@typescript-eslint/eslint-plugin": "^4.3.0",
"@typescript-eslint/parser": "^4.3.0",
"eslint": "^7.10.0",
"eslint-import-resolver-node": "^0.3.4",
"eslint-import-resolver-typescript": "^2.3.0",
"eslint-plugin-import": "^2.22.1",
"jest": "^26.4.2",
"jsii": "^1.11.0",
"jsii-diff": "^1.11.0",
"jsii-docgen": "^1.3.2",
"jsii-pacmak": "^1.11.0",
"jsii-release": "^0.1.6",
"json-schema": "^0.2.5",
"markmac": "^0.1.2",
"standard-version": "^9.0.0",
"ts-jest": "^26.1.0",
"typescript": "^3.9.5"
},
"peerDependencies": {},
"dependencies": {
"@iarna/toml": "^2.2.5",
"chalk": "^4.1.0",
"decamelize": "^4.0.0",
"fs-extra": "^9.0.1",
"glob": "^7",
"inquirer": "^7.3.3",
"semver": "^7.3.2",
"yaml": "^1.10.0",
"yargs": "^16.0.3"
},
"bundledDependencies": [
"@iarna/toml",
"chalk",
"decamelize",
"fs-extra",
"glob",
"inquirer",
"semver",
"yaml",
"yargs"
],
"keywords": [],
"engines": {
"node": ">= 10.17.0"
},
"main": "lib/index.js",
"license": "Apache-2.0",
"start": {
"start": {
"command": "yarn run start",
"desc": "Shows this menu"
},
"projen": {
"desc": "Synthesize project configuration from .projenrc.js",
"command": "yarn run projen",
"category": 3
},
"bump": {
"desc": "Commits a bump to the package version based on conventional commits",
"command": "yarn run bump",
"category": 2
},
"release": {
"desc": "Bumps version & push to master",
"command": "yarn run release",
"category": 2
},
"test": {
"desc": "Run tests",
"command": "yarn run test",
"category": 1
},
"test:watch": {
"desc": "Run jest in watch mode",
"command": "yarn run test:watch",
"category": 1
},
"projen:upgrade": {
"desc": "upgrades projen to the latest version",
"command": "yarn run projen:upgrade",
"category": 3
},
"compile": {
"desc": "Only compile",
"command": "yarn run compile",
"category": 0
},
"watch": {
"desc": "Watch & compile in the background",
"command": "yarn run watch",
"category": 0
},
"build": {
"desc": "Full release build (test+compile)",
"command": "yarn run build",
"category": 0
},
"package": {
"desc": "Create an npm tarball",
"command": "yarn run package",
"category": 2
},
"eslint": {
"desc": "Runs eslint against the codebase",
"command": "yarn run eslint",
"category": 1
},
"compat": {
"desc": "Perform API compatibility check against latest version",
"command": "yarn run compat",
"category": 2
},
"docgen": {
"desc": "Generate API.md from .jsii manifest",
"command": "yarn run docgen",
"category": 2
}
},
"version": "0.3.167",
"jest": {
"clearMocks": true,
"collectCoverage": true,
"coverageDirectory": "coverage",
"coveragePathIgnorePatterns": [
"/node_modules/"
],
"testPathIgnorePatterns": [
"/node_modules/"
],
"testMatch": [
"**/__tests__/**/*.ts?(x)",
"**/?(*.)+(spec|test).ts?(x)"
],
"preset": "ts-jest",
"globals": {
"ts-jest": {
"tsconfig": "tsconfig.jest.json"
}
}
},
"types": "lib/index.d.ts",
"stability": "experimental",
"jsii": {
"outdir": "dist",
"targets": {},
"tsc": {
"outDir": "lib",
"rootDir": "src"
}
}
}