-
Notifications
You must be signed in to change notification settings - Fork 4.5k
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.91 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 1.91 KB
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
{
"name": "awslint",
"version": "0.0.0",
"description": "Enforces the AWS Construct Library guidelines",
"scripts": {
"build": "tsc -b && eslint . --ext=.ts && pkglint && chmod +x bin/awslint",
"lint": "eslint . --ext=.ts && pkglint",
"test": "echo ok",
"watch": "tsc -b -w",
"package": "mkdir -p dist/js && mv $( npm pack ) dist/js/",
"build+test+package": "yarn build+test && yarn package",
"build+test": "yarn build && yarn test",
"pkglint": "pkglint -f",
"build+extract": "yarn build",
"build+test+extract": "yarn build+test"
},
"bin": {
"awslint": "bin/awslint"
},
"dependencies": {
"@jsii/spec": "1.113.0",
"chalk": "^4",
"fs-extra": "^9.1.0",
"jsii-reflect": "1.113.0",
"change-case": "^4.1.2",
"yargs": "^16.2.0"
},
"devDependencies": {
"@cdklabs/eslint-plugin": "^1.3.4",
"@aws-cdk/pkglint": "0.0.0",
"@types/fs-extra": "^9.0.13",
"@types/jest": "^29.5.14",
"@types/yargs": "^15.0.19",
"@typescript-eslint/eslint-plugin": "^8",
"@stylistic/eslint-plugin": "^2",
"@typescript-eslint/parser": "^8",
"eslint": "^8",
"eslint-import-resolver-node": "^0.3.9",
"eslint-import-resolver-typescript": "^2.7.1",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jest": "^28",
"jest": "^29.7.0",
"typescript": "~5.5.4"
},
"repository": {
"type": "git",
"url": "https://github.com/aws/aws-cdk.git",
"directory": "packages/awslint"
},
"homepage": "https://github.com/aws/aws-cdk",
"license": "Apache-2.0",
"author": {
"name": "Amazon Web Services",
"url": "https://aws.amazon.com",
"organization": true
},
"keywords": [
"aws",
"cdk"
],
"maturity": "developer-preview",
"stability": "experimental",
"engines": {
"node": ">= 18.0.0"
},
"nozem": {
"ostools": [
"chmod",
"npm"
]
},
"publishConfig": {
"tag": "latest"
}
}