-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
113 lines (113 loc) · 2.89 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "dotenv-azure",
"version": "2.0.0",
"description": "Load environment variables from Azure's services App Configuration, Key Vault or a .env file",
"keywords": [
"azure",
"app",
"config",
"configuration",
"dotenv",
"dotenv-safe",
"key",
"vault",
"key-vault",
"app-config",
"app-configuration",
"environment",
"variables",
"env"
],
"repository": {
"type": "git",
"url": "https://github.com/jazida-opensource/dotenv-azure"
},
"license": "MIT",
"author": {
"name": "Daniel Sousa",
"email": "[email protected]",
"url": "https://github.com/jazida-opensource"
},
"main": "dist/lib/dotenv-azure.js",
"types": "dist/types/dotenv-azure.d.ts",
"files": [
"dist",
"config.js",
"config-rpc.js",
"config-safe.js"
],
"scripts": {
"prebuild": "rimraf dist",
"build": "tsc && typedoc src/dotenv-azure.ts",
"commit": "git-cz",
"coverage": "codecov",
"deploy-docs": "ts-node tools/gh-pages-publish",
"format": "prettier . --write",
"format:check": "prettier . --check",
"lint": "eslint . --ext .ts",
"prepare": "husky install",
"report-coverage": "cat ./coverage/lcov.info | coveralls",
"start": "tsc --watch",
"test": "jest --coverage",
"test:watch": "jest --coverage --watch",
"validate": "npm run lint && npm run format:check && npm run test"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"{src,test}/**/*.ts": [
"prettier --write",
"eslint --fix",
"jest --bail --findRelatedTests"
]
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"dependencies": {
"@azure/app-configuration": "1.1.1",
"@azure/identity": "1.3.0",
"@azure/keyvault-secrets": "4.2.0",
"bottleneck": "^2.19.5",
"dotenv": "^10.0.0",
"sync-rpc": "^1.3.6"
},
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@danielfsousa/prettier-config": "^1.1.0",
"@types/dotenv": "^8.2.0",
"@types/jest": "^26.0.15",
"@types/node": "^14.0.6",
"@typescript-eslint/eslint-plugin": "^2.6.1",
"@typescript-eslint/parser": "^2.6.1",
"codecov": "^3.6.1",
"commitizen": "^4.0.3",
"cz-conventional-changelog": "^3.0.2",
"eslint": "^7.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-standard": "^5.0.0",
"husky": "^6.0.0",
"jest": "^24.9.0",
"jest-config": "^27.0.6",
"lint-staged": "^11.0.0",
"prettier": "^2.1.2",
"rimraf": "^3.0.0",
"ts-jest": "^24.1.0",
"ts-node": "^10.0.0",
"typedoc": "^0.21.2",
"typescript": "^4.0.5"
},
"engines": {
"node": ">=12"
}
}