-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
48 lines (48 loc) · 1.15 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
{
"name": "ymlx",
"version": "1.0.7",
"description": "Command-line YAML processing tool",
"repository": "https://github.com/matthewadams/ymlx",
"author": "Matthew Adams <[email protected]>",
"license": "MIT",
"bin": {
"ymlx": "index.js"
},
"files": [
"index.js",
"reduce.js"
],
"scripts": {
"u": "mocha test/*test.js",
"test": "nyc --reporter=html mocha test/*test.js",
"posttest": "npm run lint && nyc report",
"format": "standard --fix",
"lint": "standard --verbose",
"natives": "npm run linux && npm run macos && npm run win",
"linux": "pkg -o dist/linux/ymlx -t node8-linux-x64 index.js",
"macos": "pkg -o dist/macos/ymlx -t node8-macos-x64 index.js",
"win": "pkg -o dist/win/ymlx.exe -t node8-win-x64 index.js"
},
"keywords": [
"yaml",
"yml",
"cli"
],
"engines": {
"node": ">=8"
},
"dependencies": {
"get-stdin": "6.0.0",
"js-yaml": "3.12.0",
"meow": "5.0.0"
},
"devDependencies": {
"chai": "4.1.2",
"dirty-chai": "2.0.1",
"mocha": "5.2.0",
"nyc": "12.0.2",
"pkg": "4.3.4",
"release-it": "7.5.0",
"standard": "11.0.1"
}
}