-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.34 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
{
"name": "pulumi-pihole",
"description": "A Pulumi-kubernetes way of templating pihole manifests in typescript/javascript",
"version": "1.0.14",
"license": "MIT",
"main": "bin/index.js",
"types": "bin/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/rafaribe/pulumi-pihole.git"
},
"author": "Rafael Ribeiro @rafaribe",
"bugs": {
"url": "https://github.com/rafaribe/pulumi-pihole/issues"
},
"keywords": [
"pulumi",
"kubernetes",
"pihole",
"infrastructure-as-code",
"pulumi-kubernetes"
],
"scripts": {
"lint": "eslint src/**/*.ts",
"format": "prettier --write \"src/**/*-ts\" \"bin/**/*.js\"",
"build": "tsc",
"semantic-release": "semantic-release"
},
"devDependencies": {
"@types/node": "^8.0.0",
"@typescript-eslint/eslint-plugin": "^2.19.0",
"@typescript-eslint/parser": "^2.19.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-prettier": "^3.1.2",
"prettier": "^1.19.1",
"semantic-release": "^17.0.2"
},
"dependencies": {
"@pulumi/kubernetes": "^1.0.0",
"@pulumi/kubernetesx": "^0.1.1",
"@pulumi/pulumi": "^1.0.0",
"@pulumi/random": "^1.5.0",
"typescript": "^3.7.5"
},
"files": [
"bin/**/*"
]
}