This repository has been archived by the owner on Apr 6, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
60 lines (60 loc) · 1.73 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
{
"name": "cdk-util",
"version": "1.1.5",
"description": "cdk-util",
"main": "dist/index.js",
"license": "MIT",
"author": "https://github.com/dmitrii-t",
"repository": "https://github.com/dmitrii-t/cdk-util.git",
"engines": {
"node": ">=10.x"
},
"scripts": {
"clean": "rimraf dist && rimraf cdk.out",
"build": "TS_NODE_PROJECT=tsconfig.json babel ./src --out-dir ./dist --extensions \".ts\" --ignore \"src/**/*.spec.ts\" --source-maps",
"test": "TS_NODE_PROJECT=tsconfig.json env-cmd mocha --timeout 600000 --require ./babel-hook.js \"./src/**/*.spec.ts\"",
"lint": "tslint -c tslint.json 'src/**/*.ts'",
"type": "tsc"
},
"keywords": [
"programmatic deploy",
"typescript",
"cdk-util",
"aws-cdk",
"cloud",
"aws"
],
"devDependencies": {
"@aws-cdk/core": "1.30.0",
"@aws-cdk/cx-api": "1.30.0",
"@aws-cdk/region-info": "1.30.0",
"@aws-cdk/aws-sns": "1.30.0",
"aws-cdk": "1.30.0",
"@babel/cli": "^7.7.0",
"@babel/core": "^7.7.0",
"@babel/plugin-proposal-class-properties": "^7.7.0",
"@babel/plugin-proposal-numeric-separator": "^7.2.0",
"@babel/plugin-proposal-object-rest-spread": "^7.2.0",
"@babel/preset-env": "^7.7.0",
"@babel/preset-typescript": "^7.7.0",
"@babel/register": "^7.7.0",
"@types/aws-sdk": "^2.7.0",
"@types/chai": "^4.2.4",
"@types/mocha": "^5.2.7",
"@types/node": "^10.14.10",
"aws-sdk": "^2.585.0",
"chai": "^4.2.0",
"cross-env": "^5.2.0",
"env-cmd": "^10.0.1",
"mocha": "^6.2.3",
"rimraf": "^2.6.3",
"tsconfig-paths": "^3.8.0",
"tslib": "^1.9.3",
"tslint": "^5.12.1",
"typescript": "^3.7.2"
},
"peerDependencies": {
"aws-cdk": "1.30.0"
},
"dependencies": {}
}