-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
44 lines (44 loc) · 1.25 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
{
"name": "@dev-thought/pulumi-npm",
"version": "1.7.0",
"description": "An NPM executable package for Pulumis CLI.",
"homepage": "https://www.npmjs.com/package/pulumi-npm",
"repository": "https://github.com/dev-thought/pulumi-npm",
"bugs": {
"url": "https://github.com/dev-thought/pulumi-npm/issues",
"email": "[email protected]"
},
"author": "Mitko Tschimev <[email protected]>",
"license": "MIT",
"keywords": [
"terraform",
"pulumi",
"infrastructure",
"automation",
"infrastructure-as-code",
"executable"
],
"scripts": {
"start": "cd src && node pulumi-wrapper",
"prettier": "prettier --write src/**/*.js scripts/**/*.js tests/**/*.js",
"pub": "npm publish --no-git-tag-version --strict-semver --access public",
"prepub": "npm run prepublishOnly",
"prepublishOnly": "npm run prettier && pkgfiles",
"postinstall": "node src/install-pulumi",
"test": "./tests/runner.sh",
"test-global": "./tests/global-runner.sh"
},
"bin": {
"pulumi": "./src/pulumi-wrapper.js"
},
"dependencies": {
"jaguar": "^6.0.0",
"node-fetch": "^2.6.0",
"onezip": "^5.0.0",
"progress": "^2.0.0"
},
"devDependencies": {
"pkgfiles": "^2.3.2",
"prettier": "^1.19.1"
}
}