forked from projen/projen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
157 lines (157 loc) · 4.05 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
{
"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",
"upgrade-dependencies": "/bin/bash ./projen.bash upgrade-dependencies",
"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",
"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",
"projen": "/bin/bash ./projen.bash",
"start": "/bin/bash ./projen.bash start"
},
"author": {
"name": "Elad Ben-Israel",
"email": "benisrae@amazon.com",
"organization": false
},
"devDependencies": {
"@types/fs-extra": "^8",
"@types/glob": "^7.1.3",
"@types/ini": "^1.3.30",
"@types/inquirer": "^7.3.1",
"@types/jest": "^26.0.23",
"@types/node": "^10.17.0",
"@types/semver": "^7.3.6",
"@types/yargs": "^15.0.13",
"@typescript-eslint/eslint-plugin": "^4.25.0",
"@typescript-eslint/parser": "^4.25.0",
"all-contributors-cli": "^6.20.0",
"eslint": "^7.27.0",
"eslint-import-resolver-node": "^0.3.4",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-import": "^2.23.4",
"jest": "^26.6.3",
"jest-junit": "^12",
"jsii": "^1.30.0",
"jsii-diff": "^1.30.0",
"jsii-docgen": "^1.8.85",
"jsii-pacmak": "^1.30.0",
"json-schema": "^0.3.0",
"markmac": "^0.1.37",
"npm-check-updates": "^11",
"standard-version": "^9",
"typescript": "^3.9.9"
},
"dependencies": {
"@iarna/toml": "^2.2.5",
"chalk": "^4.1.1",
"decamelize": "^4.0.0",
"fs-extra": "^9.1.0",
"glob": "^7",
"ini": "^2.0.0",
"inquirer": "^7.3.3",
"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",
"inquirer",
"semver",
"shx",
"xmlbuilder2",
"yaml",
"yargs"
],
"engines": {
"node": ">= 10.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": "org.projen",
"maven": {
"groupId": "com.github.eladb",
"artifactId": "projen"
}
},
"python": {
"distName": "projen",
"module": "projen"
}
},
"tsc": {
"outDir": "lib",
"rootDir": "src"
}
},
"//": "~~ Generated by projen. To modify, edit .projenrc.js and run \"npx projen\"."
}