-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.68 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.68 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
{
"name": "@brickhouse-tech/yaml-include",
"version": "0.1.0",
"description": "Generic YAML/JSON preprocessor with includes, merging, and transformations",
"keywords": [
"yaml",
"json",
"include",
"merge",
"preprocessor",
"template",
"cloudformation",
"kubernetes",
"docker-compose"
],
"homepage": "https://github.com/brickhouse-tech/yaml-include#readme",
"bugs": {
"url": "https://github.com/brickhouse-tech/yaml-include/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/brickhouse-tech/yaml-include.git"
},
"license": "MIT",
"author": "Nick McCready <nemtcan@gmail.com>",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"yaml-include": "./bin/yaml-include.js"
},
"files": [
"dist",
"bin",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"build:clean": "rm -rf dist && npm run build",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prepare": "sort-package-json",
"prepublishOnly": "npm run build:clean",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@znemz/sort-object": "^3.0.11",
"axios": "^1.7.9",
"deepmerge": "^4.3.1",
"glob": "^11.0.0",
"jmespath": "^0.16.0",
"js-yaml": "^4.1.0",
"lodash": "^4.17.21"
},
"devDependencies": {
"@types/jmespath": "^0.15.2",
"@types/js-yaml": "^4.0.9",
"@types/lodash": "^4.17.15",
"@types/node": "^22.10.5",
"eslint": "^10.0.3",
"sort-package-json": "^2.10.1",
"typescript": "^5.7.3",
"vitest": "^3.0.7"
},
"engines": {
"node": ">=20"
}
}