-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 2.4 KB
/
package.json
File metadata and controls
107 lines (107 loc) · 2.4 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
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
{
"name": "tconf",
"version": "4.1.0",
"description": "Heirarchical configuration with environment variable coercion and type validation.",
"author": "Scott Sayles",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./zod": {
"types": "./dist/zod.d.ts",
"import": "./dist/zod.js"
},
"./package.json": "./package.json"
},
"repository": {
"type": "git",
"url": "https://github.com/codemariner/tconf"
},
"engines": {
"node": ">=18.0.0"
},
"config": {
"prettier": "**/*.{graphql,js,json,css,jsx,mjs,ts,tsx,yaml,yml}"
},
"scripts": {
"test": "vitest run --coverage",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"lint": "eslint .",
"prettier": "prettier --write \"$npm_package_config_prettier\"",
"prettier:check": "prettier --list-different \"$npm_package_config_prettier\"",
"build": "tsc && npm run build:test",
"build:test": "tsc --project test --noEmit",
"clean": "del-cli -f dist && del-cli -f coverage",
"prepublishOnly": "del-cli -f coverage"
},
"license": "ISC",
"devDependencies": {
"@eslint/js": "^9.39.1",
"@types/bluebird": "^3.5.37",
"@types/debug": "4.1.7",
"@types/deepmerge": "2.2.0",
"@types/js-yaml": "4.0.0",
"@types/node": "^20.0.0",
"@vitest/coverage-v8": "^1.0.0",
"@vitest/ui": "^1.0.0",
"del-cli": "5.1.0",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-vitest": "^0.5.4",
"eslint-plugin-vitest-globals": "^1.5.0",
"globals": "^15.14.0",
"husky": "8.0.3",
"lint-staged": "15.2.0",
"prettier": "3.2.0",
"prettier-eslint-cli": "^8.0.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.3",
"typescript-eslint": "^8.48.0",
"vitest": "^1.0.0"
},
"dependencies": {
"debug": "^4.3.1",
"deepmerge": "^4.2.2",
"js-yaml": "^4.1.0",
"json5": "^2.2.0",
"zod": "^4.1.13"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,js,json,yaml,yml}": [
"eslint --cache --fix",
"prettier --write",
"git add"
]
},
"files": [
"src/**/*",
"dist/**/*",
"package.json",
"README.md",
"DOC.md",
"CHANGELOG.md",
"LICENSE",
"tsconfig.json"
],
"keywords": [
"config",
"configuration",
"env",
"typescript",
"zod",
"12-factor",
"esm"
]
}