-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.09 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": "typed-configs",
"version": "0.1.1",
"description": "Library for accessing your config variables in a typed manner, with runtime checking and a definition exporter. Supports .yml and enviroment variables.",
"main": "lib/index.js",
"author": "guidsdo",
"license": "Apache-2.0",
"homepage": "https://github.com/guidsdo/typed-configs",
"bugs": {
"url": "https://github.com/guidsdo/guidsdo/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/guidsdo/typed-configs.git"
},
"keywords": [
"env",
"environment",
"config",
"typed config",
"config inheritance",
"yml",
"typescript",
"decorators"
],
"scripts": {
"build": "rm -rf lib && tsc",
"test": "jest",
"test:watch": "jest --watch --coverage"
},
"dependencies": {
"reflect-metadata": "^0.1.13",
"yamljs": "^0.3.0"
},
"devDependencies": {
"@types/jest": "^26.0.23",
"@types/node": "^14.14.6",
"@types/yamljs": "0.2.30",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"ts-jest": "^26.5.5",
"typescript": "^4.2.4"
}
}