forked from alexlafroscia/yaml-merge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.04 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
{
"name": "@alexlafroscia/yaml-merge",
"version": "4.1.0",
"description": "A super simple tool for merging YAML files",
"main": "index.js",
"bin": "bin/yaml-merge",
"license": "MIT",
"scripts": {
"lint": "eslint .",
"test": "mocha",
"release": "standard-version",
"postinstall": "husky install",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable"
},
"files": [
"bin/yaml-merge",
"index.js"
],
"dependencies": {
"glob": "^7.1.7",
"js-yaml": "^4.0.0",
"lodash": "^4.17.20",
"yargs": "^17.7.2"
},
"devDependencies": {
"@movable/eslint-config": "^0.6.8",
"@movable/eslint-config-node": "^1.0.0",
"@movable/prettier-config": "^1.0.0",
"chai": "^4.2.0",
"common-tags": "^1.4.0",
"husky": "^6.0.0",
"lint-staged": "^11.0.0",
"mocha": "^9.0.1",
"pinst": "^2.1.4",
"standard-version": "^9.0.0"
},
"lint-staged": {
"*.js": "eslint --fix",
"*.yml": "prettier --write"
},
"volta": {
"node": "12.16.1",
"yarn": "1.22.4"
}
}