-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.96 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
52
53
54
55
56
57
58
59
60
61
{
"name": "@maif/pulumi-dynamic-provider-otoroshi",
"description": "Pulumi dynamic provider for Otoroshi",
"version": "1.1.0",
"author": "Antoine LECOMTE",
"license": "Apache-2.0",
"repository": {
"url": "https://github.com/MAIF/pulumi-dynamic-provider-otoroshi"
},
"homepage": "https://github.com/MAIF/pulumi-dynamic-provider-otoroshi",
"bugs": "https://github.com/MAIF/pulumi-dynamic-provider-otoroshi/issues",
"engines": {
"node": ">=16"
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "rm -rf ./lib && tsc -p tsconfig-build.json",
"build-win": "rd /q /s lib && tsc -p tsconfig-build.json",
"format": "prettier --write .",
"format-check": "prettier --check .",
"lint": "eslint . --ext .ts",
"audit-check": "npm audit --registry=https://registry.npmjs.org --audit-level=high",
"prepare": "npm run build",
"dep-check": "depcheck --ignores=@types/node",
"prepublish": "npm run format && npm run lint",
"test": "jest",
"test:watch": "jest --watch",
"version": "auto-changelog && git add CHANGELOG.md"
},
"files": [
"lib/**/*"
],
"keywords": [
"azure",
"pulumi",
"provider",
"otoroshi"
],
"devDependencies": {
"@types/jest": "^29.2.5",
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^5.48.2",
"@typescript-eslint/parser": "^5.48.2",
"auto-changelog": "^2.4.0",
"eslint": "^8.32.0",
"eslint-config-prettier": "^8.6.0",
"jest": "^29.3.1",
"prettier": "^2.8.3",
"ts-jest": "^29.0.5"
},
"dependencies": {
"@pulumi/pulumi": "^3.53.1",
"@types/node-fetch": "^2.6.2",
"ajv": "^8.12.0",
"deep-object-diff": "^1.1.7",
"node-fetch": "^2.6.8",
"typescript": "^4.9.4",
"yaml": "^2.2.1"
}
}