-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.53 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
{
"name": "create-cdkts",
"version": "0.0.6",
"description": "Command Line utility to bootstrap a TypeScript CDK project",
"main": "dist/index.js",
"type": "module",
"scripts": {
"build": "tsc",
"publish": "npx lint-staged && vitest run && npm run build && npm publish",
"test": "vitest"
},
"bin": {
"create-cdkts": "./bin/create-cdkts.js"
},
"files": [
"dist/**/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/antstanley/create-cdk-typescript.git"
},
"keywords": [
"cdk",
"aws",
"typescript"
],
"author": "A. Stanley",
"license": "MIT",
"bugs": {
"url": "https://github.com/antstanley/create-cdk-typescript/issues"
},
"homepage": "https://github.com/antstanley/create-cdk-typescript#readme",
"devDependencies": {
"@commitlint/cli": "^17.6.6",
"@commitlint/config-conventional": "^17.6.6",
"@typescript-eslint/eslint-plugin": "^6.1.0",
"eslint": "^8.45.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-standard-with-typescript": "^36.1.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^16.0.1",
"eslint-plugin-promise": "^6.1.1",
"husky": "^8.0.3",
"lint-staged": "^13.2.3",
"prettier": "^3.0.0",
"typescript": "^5.1.6",
"vitest": "^0.33.0"
},
"lint-staged": {
"*.ts": [
"prettier --write .",
"eslint"
]
},
"dependencies": {
"@types/yargs-parser": "^21.0.0",
"change-case": "^4.1.2",
"strip-json-comments": "^5.0.1",
"yargs-parser": "^21.1.1"
}
}