-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
71 lines (71 loc) · 1.59 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
{
"name": "cdk-constants",
"description": "Library of helpful constants to work with the CDK",
"version": "3.0.2",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"license": "Apache-2.0",
"repository": {
"url": "https://github.com/kevinslin/cdk-constants",
"type": "git"
},
"keywords": [
"aws",
"cdk"
],
"homepage": "https://github.com/kevinslin/cdk-constants",
"scripts": {
"package": "jsii-pacmak",
"build": "jsii",
"watch": "jsii -w",
"test": "jest",
"watch-test": "jest -w"
},
"jsii": {
"outdir": "dist",
"targets": {
"java": {
"package": "com.github.kevinslin.constants",
"maven": {
"groupId": "com.github.kevinslin",
"artifactId": "cdk-constants"
}
},
"python": {
"distName": "cdk-constants",
"module": "cdk_constants"
}
}
},
"author": {
"email": "[email protected]",
"name": "Kevin S Lin",
"url": "https://github.com/kevinslin"
},
"jest": {
"moduleFileExtensions": [
"js"
]
},
"prepublish": "tsc",
"dependencies": {},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/execa": "^2.0.0",
"@types/fs-extra": "^8.0.0",
"@types/jest": "^24.0.24",
"@types/lodash": "^4.14.136",
"@types/pino": "^5.8.8",
"@types/yargs": "^13.0.2",
"axios": "^0.19.0",
"execa": "^2.0.3",
"fs-extra": "^8.1.0",
"jest": "^24.9.0",
"jsii": "^0.20.11",
"jsii-pacmak": "^0.20.11",
"pino": "^5.13.1",
"typescript": "^3.5.3",
"yargs": "^13.3.0",
"lodash": "^4.17.15"
}
}