forked from projen/projen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
158 lines (158 loc) · 4.21 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
{
"name": "projen",
"description": "CDK for software projects",
"repository": {
"type": "git",
"url": "https://github.com/projen/projen.git"
},
"bin": {
"projen": "bin/projen"
},
"scripts": {
"clobber": "/bin/bash ./projen.bash clobber",
"compile": "/bin/bash ./projen.bash compile",
"test:compile": "/bin/bash ./projen.bash test:compile",
"test": "/bin/bash ./projen.bash test",
"build": "/bin/bash ./projen.bash build",
"test:watch": "/bin/bash ./projen.bash test:watch",
"test:update": "/bin/bash ./projen.bash test:update",
"bump": "/bin/bash ./projen.bash bump",
"unbump": "/bin/bash ./projen.bash unbump",
"publish:github": "/bin/bash ./projen.bash publish:github",
"upgrade": "/bin/bash ./projen.bash upgrade",
"default": "/bin/bash ./projen.bash default",
"watch": "/bin/bash ./projen.bash watch",
"package": "/bin/bash ./projen.bash package",
"eslint": "/bin/bash ./projen.bash eslint",
"compat": "/bin/bash ./projen.bash compat",
"publish:npm": "/bin/bash ./projen.bash publish:npm",
"publish:maven": "/bin/bash ./projen.bash publish:maven",
"publish:pypi": "/bin/bash ./projen.bash publish:pypi",
"docgen": "/bin/bash ./projen.bash docgen",
"readme-macros": "/bin/bash ./projen.bash readme-macros",
"devenv:setup": "/bin/bash ./projen.bash devenv:setup",
"contributors:update": "/bin/bash ./projen.bash contributors:update",
"release": "/bin/bash ./projen.bash release",
"projen": "/bin/bash ./projen.bash"
},
"author": {
"name": "Elad Ben-Israel",
"email": "[email protected]",
"organization": false
},
"devDependencies": {
"@types/fs-extra": "^8",
"@types/glob": "^7.1.4",
"@types/ini": "^1.3.30",
"@types/jest": "^26.0.24",
"@types/node": "^14.17.0",
"@types/semver": "^7.3.8",
"@types/yargs": "^15.0.14",
"@typescript-eslint/eslint-plugin": "^4.30.0",
"@typescript-eslint/parser": "^4.30.0",
"all-contributors-cli": "^6.20.0",
"eslint": "^7.32.0",
"eslint-import-resolver-node": "^0.3.6",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-import": "^2.24.2",
"jest": "^26.6.3",
"jest-junit": "^12",
"jsii": "^1.34.0",
"jsii-diff": "^1.34.0",
"jsii-docgen": "^1.8.110",
"jsii-pacmak": "^1.34.0",
"json-schema": "^0.3.0",
"markmac": "^0.1.37",
"npm-check-updates": "^11",
"standard-version": "^9",
"typescript": "^3.9.10"
},
"dependencies": {
"@iarna/toml": "^2.2.5",
"chalk": "^4.1.2",
"decamelize": "^4.0.0",
"fs-extra": "^9.1.0",
"glob": "^7",
"ini": "^2.0.0",
"semver": "^7.3.5",
"shx": "^0.3.3",
"xmlbuilder2": "^2.4.1",
"yaml": "^1.10.2",
"yargs": "^16.2.0"
},
"bundledDependencies": [
"@iarna/toml",
"chalk",
"decamelize",
"fs-extra",
"glob",
"ini",
"semver",
"shx",
"xmlbuilder2",
"yaml",
"yargs"
],
"engines": {
"node": ">= 14.17.0"
},
"main": "lib/index.js",
"license": "Apache-2.0",
"version": "0.0.0",
"jest": {
"testMatch": [
"**/lib/__tests__/**/?(*.)+(spec|test).js?(x)"
],
"clearMocks": true,
"collectCoverage": true,
"coverageReporters": [
"json",
"lcov",
"clover"
],
"coverageDirectory": "coverage",
"coveragePathIgnorePatterns": [
"/node_modules/"
],
"testPathIgnorePatterns": [
"/node_modules/"
],
"watchPathIgnorePatterns": [
"/node_modules/",
"/src/"
],
"reporters": [
"default",
[
"jest-junit",
{
"outputDirectory": "test-reports"
}
]
],
"snapshotResolver": "./.projen/jest-snapshot-resolver.js"
},
"types": "lib/index.d.ts",
"stability": "experimental",
"jsii": {
"outdir": "dist",
"targets": {
"java": {
"package": "io.github.cdklabs.projen",
"maven": {
"groupId": "io.github.cdklabs",
"artifactId": "projen"
}
},
"python": {
"distName": "projen",
"module": "projen"
}
},
"tsc": {
"outDir": "lib",
"rootDir": "src"
}
},
"//": "~~ Generated by projen. To modify, edit .projenrc.js and run \"npx projen\"."
}