-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.11 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.11 KB
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
{
"name": "tfxjs",
"version": "1.2.3",
"description": "Terraform acceptance testing framework",
"main": "./lib/index.js",
"bin": {
"tfx": "index.js"
},
"scripts": {
"test": "mocha unit-tests/",
"coverage": "npx nyc npm run test"
},
"engines": {
"node": ">=17.6.0"
},
"authors": [
"Jennifer Valle",
"Lucas Franke",
"Taha Jafry",
"Walter Tang"
],
"license": "ISC",
"dependencies": {
"chai": "^4.3.6",
"chalk": "^4.1.2",
"dotenv": "^16.0.0",
"js-yaml": "^4.1.0",
"json-to-pretty-yaml": "^1.2.2",
"lazy-z": "^1.5.0",
"mocha": "^9.2.2",
"node-ssh": "^12.0.5",
"ping": "^0.4.2",
"regex-but-with-words": "^1.0.5"
},
"devDependencies": {
"chai": "^4.3.6",
"dotenv": "^16.0.0",
"json-to-pretty-yaml": "^1.2.2",
"mocha": "^9.2.2",
"nyc": "^15.1.0",
"sinon": "^14.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/IBM/tfxjs.git"
},
"keywords": [
"terraform",
"mocha",
"chai",
"acceptance test",
"end-to-end",
"testing",
"test framework",
"tf",
"hcl"
]
}