forked from boschni/json-merger
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 1.83 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
{
"name": "json-merger",
"version": "1.1.10",
"description": "Merge JSON (or YAML) files and objects with indicators like $import $remove $replace $merge etc",
"main": "dist/index.js",
"bin": {
"json-merger": "./bin/json-merger.js"
},
"files": [
"bin",
"dist"
],
"scripts": {
"build": "tsc",
"clean": "rimraf ./dist",
"prebuild": "npm run clean",
"prepare": "npm run test",
"pretest": "npm run build",
"test": "jest && npm run test:bin:json && npm run test:bin:yaml",
"test:bin:json": "./bin/json-merger.js ./__tests__/bin.json",
"test:bin:yaml": "./bin/json-merger.js -op @ ./__tests__/bin.yaml",
"watch": "tsc --watch",
"prettier": "prettier --write ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/boschni/json-merger.git"
},
"keywords": [
"JSON",
"YAML",
"append",
"expression",
"extend",
"import",
"merge",
"override",
"patch",
"prepend",
"preprocessor",
"ref",
"remove",
"replace",
"schema",
"select"
],
"author": "Niek Bosch <[email protected]>",
"contributors": [
"Andreas Louv <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/boschni/json-merger/issues"
},
"homepage": "https://github.com/boschni/json-merger#readme",
"jest": {
"testURL": "http://localhost/"
},
"dependencies": {
"commander": "^9.1.0",
"fs-extra": "^10.0.1",
"js-yaml": "^4.1.0",
"json-ptr": "^3.1.1",
"jsonpath": "^1.1.1",
"lodash.range": "^3.2.0",
"vm2": "^3.9.17"
},
"devDependencies": {
"@types/js-yaml": "^4.0.5",
"@types/jsonpath": "^0.2.0",
"@types/lodash.range": "^3.2.6",
"@types/node": "^10.12.18",
"jest": "^27.5.1",
"prettier": "^2.6.2",
"rimraf": "^3.0.2",
"typescript": "^4.6.3"
}
}