-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
37 lines (37 loc) · 903 Bytes
/
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
{
"name": "terraform-run-task-hello-world-nodejs",
"version": "0.0.1",
"description": "A Terraform Cloud Run Task Hello World in Node.js",
"main": "index.js",
"type": "module",
"scripts": {
"start": "node index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/redeux/terraform-run-task-hello-world-nodejs.git"
},
"keywords": [
"Terraform",
"Run",
"Task",
"Server"
],
"author": "Phil Sautter",
"license": "MIT",
"bugs": {
"url": "https://github.com/redeux/terraform-run-task-hello-world-nodejs/issues"
},
"homepage": "https://github.com/redeux/terraform-run-task-hello-world-nodejs#readme",
"dependencies": {
"express": "^4.17.3",
"node-fetch": "^3.2.3"
},
"engines": {
"node": "16.x"
},
"devDependencies": {
"eslint": "^8.12.0"
}
}