-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.08 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
{
"name": "@paciolan/raw-yaml-merge",
"version": "0.0.0-development",
"description": "Merge YAML files while preserving anchors and aliases.",
"keywords": [
"yaml",
"merge"
],
"author": "Paciolan",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Paciolan/raw-yaml-merge.git"
},
"release": {
"branches": [
"main"
]
},
"publishConfig": {
"access": "public"
},
"main": "src/index.js",
"scripts": {
"prepare": "husky install",
"test": "jest",
"lint": "eslint src",
"lint:fix": "npm run lint -- --fix",
"semantic-release": "semantic-release"
},
"dependencies": {
"yaml": "2.0.0-7"
},
"devDependencies": {
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"eslint": "^7.32.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.2",
"jest": "^27.1.0",
"prettier": "^2.3.2",
"semantic-release": "^17.4.7"
},
"optionalDependencies": {
"fsevents": "^2.3.2"
},
"config": {
"commitizen": {
"path": "git-cz"
}
}
}