-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.28 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.28 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
{
"name": "@lego/pulumi-get-value",
"version": "1.1.1",
"description": "Get the value of a Pulumi Output<T> using await instead of apply",
"main": "dist/index.js",
"scripts": {
"build": "tsc -p .",
"lint": "eslint .",
"test": "jest --coverage",
"release": "semantic-release"
},
"files": [
"dist",
"README.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/LEGO/pulumi-get-value.git"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"pulumi",
"await",
"async",
"typescript"
],
"author": "Morten Bøgh <morten.boegh@lego.com>",
"contributors": [
"Alin Stefan Olaru <alin.stefan.olaru@lego.com>"
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/LEGO/pulumi-get-value/issues"
},
"homepage": "https://github.com/LEGO/pulumi-get-value#readme",
"dependencies": {
"@pulumi/pulumi": "^3.50.0"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.2",
"@semantic-release/git": "^10.0.1",
"@types/jest": "^29.5.14",
"@types/node": "^22.0.0",
"eslint": "^9.39.4",
"globals": "^17.4.0",
"typescript-eslint": "^8.57.1",
"jest": "^29.7.0",
"semantic-release": "^25.0.3",
"ts-jest": "^29.4.6",
"typescript": "^5.9.3"
}
}