-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.32 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
{
"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 . --ext .ts",
"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 <[email protected]>",
"contributors": [
"Alin Stefan Olaru <[email protected]>"
],
"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": "^28.1.0",
"@types/node": "^18.8.3",
"@typescript-eslint/eslint-plugin": "^5.54.0",
"@typescript-eslint/parser": "^5.54.0",
"eslint": "^8.35.0",
"jest": "^28.1.0",
"semantic-release": "^20.1.1",
"ts-jest": "^28.0.3",
"typescript": "^4.7.2"
}
}