-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
54 lines (54 loc) · 1.26 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
{
"name": "mermal",
"description": "Merges YAML files whilst following JSON references",
"version": "0.4.8",
"author": "Daniel Li <[email protected]>",
"bin": {
"mermal": "./dist/bin.js"
},
"bugs": {
"url": "https://github.com/d4nyll/mermal/issues",
"email": "[email protected]"
},
"dependencies": {
"chalk": "^5.3.0",
"commander": "^12.0.0",
"glob": "^10.3.10",
"js-yaml": "^4.1.0",
"just-extend": "^6.2.0",
"just-flatten-it": "^5.2.0",
"ora": "^8.0.1"
},
"devDependencies": {
"@babel/cli": "^7.23.9",
"@babel/preset-env": "^7.23.9",
"eslint": "^8.56.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.29.1",
"jest": "^29.7.0"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=9.8.1"
},
"homepage": "https://github.com/d4nyll/mermal",
"keywords": [
"merge",
"swagger",
"yaml"
],
"license": "MIT",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/d4nyll/mermal.git"
},
"scripts": {
"build": "babel src --out-dir dist --copy-files",
"fix": "eslint --fix src/**",
"lint": "eslint src/**",
"prepare": "npm run build",
"prepublishOnly": "npm run lint && npm run test",
"test": "jest src"
}
}