-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.07 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
{
"name": "pulumi-buddy",
"description": "A Pulumi integration for Buddy",
"version": "0.7.0",
"repository": "https://github.com/neoskop/pulumi-buddy",
"author": "Mark Wecke <[email protected]>",
"keywords": [
"pulumi",
"buddy",
"ci"
],
"license": "MIT",
"main": "index.ts",
"scripts": {
"clean": "rimraf dist",
"prebuild": "npm run clean",
"build": "tsc",
"postbuild": "./bin/bundle.sh",
"publish-next": "npm run build && npm publish dist --tag next",
"publish-latest-only": "npm run build && npm publish dist",
"publish-latest": "npm run publish-latest-only && npm dist-tag add `jq '.name' package.json -r`@`jq '.version' package.json -r` next"
},
"dependencies": {
"@pulumi-utils/sdk": "0.1.0",
"@pulumi/pulumi": "^2.0.0"
},
"devDependencies": {
"@types/node": "^13.13.2",
"rimraf": "3.0.2",
"typescript": "3.8.3"
},
"pulumi": {
"resource": true,
"server": "https://pulumi.neoskop.cloud"
}
}