-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.5 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
{
"name": "@defang-io/pulumi-defang",
"version": "0.18.0",
"author": "Defang Software Labs Inc.",
"bugs": {
"url": "https://github.com/DefangLabs/pulumi-defang/issues"
},
"dependencies": {
"@balena/dockerignore": "^1.0.2",
"@grpc/grpc-js": "^1.12.2",
"google-protobuf": "^3.5.0",
"node-fetch": "^3.3.1",
"tar": "^6.1.15"
},
"peerDependencies": {
"@pulumi/pulumi": "^3.95.0"
},
"description": "Pulumi provider for the Defang Opinionated Platform",
"devDependencies": {
"@types/google-protobuf": "^3.15.6",
"@types/node": "^16",
"@types/tar": "^6.1.5",
"grpc-tools": "^1.12.4",
"ts-protoc-gen": "^0.15.0",
"typescript": "~5.1.6"
},
"engines": {
"node": ">=16"
},
"files": [
"lib"
],
"homepage": "https://github.com/DefangLabs/pulumi-defang#readme",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/DefangLabs/pulumi-defang.git"
},
"scripts": {
"build": "tsc && cp -r protos lib/",
"prebuild": "npm run build-grpc",
"build-grpc": "mkdir -p protos && grpc_tools_node_protoc --plugin=protoc-gen-ts=./node_modules/.bin/protoc-gen-ts --ts_out=service=grpc-node,mode=grpc-js:./protos --js_out=import_style=commonjs,binary:./protos --grpc_out=grpc_js:./protos io/defang/v1/*.proto",
"prepublish": "npm run build",
"preversion": "git pull && npm run build",
"postversion": "git push --follow-tags",
"pretest": "npm run build",
"test": "cd tests && npm i && npm test"
}
}