-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
62 lines (62 loc) · 1.45 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
{
"name": "one-click-drone",
"version": "1.0.0",
"description": "one click deployment of Drone CI into your AWS account",
"repository": {
"type": "git",
"url": "git+https://github.com/stelligent/one-click-drone.git"
},
"author": "Sepehr Laal <sepehr.laal@stelligent.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/stelligent/one-click-drone/issues"
},
"scripts": {
"test": "nyc mocha"
},
"homepage": "https://github.com/stelligent/one-click-drone#readme",
"devDependencies": {
"@aws-cdk/assert": "^1.39.0",
"chai": "^4.2.0",
"choma": "^1.2.1",
"eslint": "^7.0.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"mocha": "^7.1.2",
"nyc": "^15.0.1",
"prettier": "^2.0.5"
},
"dependencies": {
"@aws-cdk/aws-ec2": "^1.39.0",
"@aws-cdk/aws-ecs": "^1.39.0",
"@aws-cdk/aws-iam": "^1.39.0",
"@aws-cdk/aws-rds": "^1.39.0",
"@aws-cdk/aws-s3": "^1.39.0",
"@aws-cdk/core": "^1.39.0",
"aws-cdk": "^1.39.0",
"debug": "^4.1.1",
"lodash": "^4.17.21",
"parse-strings-in-object": "^2.0.0",
"rc": "^1.2.8",
"traverse": "^0.6.6"
},
"mocha": {
"bail": true,
"exit": true,
"fullTrace": true,
"recursive": true,
"inlineDiffs": true,
"timeout": 10000,
"require": [
"choma"
]
},
"nyc": {
"reporter": [
"html",
"text-summary"
],
"cache": false,
"instrument": true
}
}