-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
44 lines (44 loc) · 887 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": "yaml-sort",
"version": "2.1.0",
"description": "Sort YAML files alphabetically",
"main": "yaml-sort.js",
"scripts": {
"test": "test/test.js",
"lint": "standard",
"fix": "standard --fix"
},
"bin": {
"yaml-sort": "yaml-sort.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ddebin/yaml-sort.git"
},
"keywords": [
"cli",
"yaml",
"yml",
"sort",
"stream",
"shell"
],
"author": "Damien Debin <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ddebin/yaml-sort/issues"
},
"homepage": "https://github.com/ddebin/yaml-sort#readme",
"dependencies": {
"js-yaml": "^4.0.0",
"yargs": "^17.0.0"
},
"devDependencies": {
"standard": "^17.0.0",
"tape": "^5.6.6",
"tape-spawn": "^1.4.2"
},
"engines": {
"node": ">=12"
}
}