-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
44 lines (44 loc) · 1014 Bytes
/
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": "jsonmerge",
"version": "2.0.0",
"description": "merge json file",
"main": "index.js",
"scripts": {
"lint:fix": "eslint . --fix",
"lint": "eslint .",
"test:cov": "c8 -x test -x strip-json-comments -r text -r json-summary xv",
"test": "xv"
},
"bin": {
"jsonmerge": "bin/jsonmerge.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Jayin/jsonmerge.git"
},
"keywords": [
"json",
"merge",
"cli"
],
"author": "Jayin Ton",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/Jayin/jsonmerge/issues"
},
"homepage": "https://github.com/Jayin/jsonmerge#readme",
"dependencies": {
"commander": "^2.9.0",
"glob": "^6.0.4",
"lodash": "^4.3.0",
"strip-json-trailing-commas": "^1.1.0"
},
"devDependencies": {
"@cjs-mifi-test/execa": "^6.0.0",
"c8": "^7.12.0",
"eslint": "^8.25.0",
"eslint-config-fritx": "^0.0.3",
"eslint-plugin-es5": "^1.5.0",
"xv": "^1.1.1"
}
}