This repository was archived by the owner on Apr 26, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.68 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.68 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
55
56
57
58
59
60
61
{
"name": "@unmango/pulumi-apps",
"version": "0.2.2",
"description": "A compilation of typed pulumi resources",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"build": "rm -rf dist && tsc",
"postbuild": "cp package.json dist",
"test": "mocha -r ts-node/register 'src/**/*.spec.ts'",
"semantic-release": "semantic-release",
"postversion": "cp -r package.json .."
},
"repository": {
"type": "git",
"url": "https://github.com/unmango/pulumi-apps.git"
},
"keywords": [
"unmango",
"UnstoppableMango",
"pulumi",
"kubernetes"
],
"author": "UnstoppableMango",
"license": "WTFPL",
"bugs": {
"url": "https://github.com/unmango/pulumi-apps/issues"
},
"homepage": "https://github.com/unmango/pulumi-apps",
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^8.0.2",
"@semantic-release/npm": "^9.0.0",
"@semantic-release/release-notes-generator": "^10.0.3",
"@types/chai": "^4.2.15",
"@types/mocha": "^9.0.0",
"@types/node": "^18.0.3",
"@typescript-eslint/eslint-plugin": "^5.5.0",
"@typescript-eslint/parser": "^5.5.0",
"chai": "^4.3.0",
"eslint": "^8.3.0",
"eslint-config-prettier": "^8.0.0",
"mocha": "^10.0.0",
"prettier": "^2.2.1",
"semantic-release": "^19.0.2",
"ts-node": "^10.4.0",
"typescript": "^4.2.2"
},
"dependencies": {
"@pulumi/kubernetes": "^3.0.0",
"@pulumi/pulumi": "^3.1.0",
"@pulumi/rancher2": "^3.0.0",
"@pulumi/random": "^4.0.0",
"yaml": "^2.0.1"
}
}