generated from silver886/TypeScript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.39 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
{
"name": "@silver886/aws-ec2",
"version": "0.3.0",
"description": "Helpers for AWS EC2",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"comments": "leasot --ignore node_modules/** .git/** --tags NOTE OPTIMIZE TODO HACK XXX FIXME BUG --filetype .ts **",
"lint": "eslint .",
"watch-pretest": "tsc -p ./test/tsconfig.json --watch",
"watch-test": "jest --coverage --watchAll",
"test": "tsc -p ./test/tsconfig.json && jest --coverage",
"prepare": "tsc",
"prepublishOnly": "pnpm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/silver886/aws-ec2.git"
},
"keywords": [
"aws",
"ec2"
],
"author": {
"name": "Leo Liu",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/silver886/aws-ec2/issues"
},
"homepage": "https://github.com/silver886/aws-ec2#readme",
"devDependencies": {
"@silver886/eslint-config": "^2.0.0",
"@types/jest": "^27.4.0",
"@types/node": "^14.14.31",
"@typescript-eslint/eslint-plugin": "^5.8.1",
"@typescript-eslint/parser": "^5.8.1",
"aws-cdk-lib": "^2.3.0",
"constructs": "^10.0.20",
"eslint": "^8.5.0",
"jest": "^27.4.5",
"leasot": "^12.0.0",
"ts-node": "^10.4.0",
"typescript": "^4.5.4"
},
"peerDependencies": {
"aws-cdk-lib": "^2.0.0",
"constructs": "^10.0.0"
}
}