forked from aws/aws-cdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 1.89 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
{
"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.92.0",
"chalk": "^4",
"fs-extra": "^9.1.0",
"jsii-reflect": "1.92.0",
"change-case": "^4.1.2",
"yargs": "^16.2.0"
},
"devDependencies": {
"@aws-cdk/eslint-plugin": "0.0.0",
"@aws-cdk/pkglint": "0.0.0",
"@types/fs-extra": "^9.0.13",
"@types/jest": "^29.5.8",
"@types/yargs": "^15.0.18",
"@typescript-eslint/eslint-plugin": "^6.11.0",
"@typescript-eslint/parser": "^6.11.0",
"eslint": "^7.32.0",
"eslint-import-resolver-node": "^0.3.9",
"eslint-import-resolver-typescript": "^2.7.1",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-jest": "^24.7.0",
"jest": "^29.7.0",
"typescript": "~5.1.6"
},
"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": ">= 14.15.0"
},
"nozem": {
"ostools": [
"chmod",
"npm"
]
},
"publishConfig": {
"tag": "latest"
}
}