-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 749 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 749 Bytes
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
{
"author": "AJ ONeal <coolaj86@gmail.com> (http://coolaj86.com)",
"name": "json2yaml",
"description": "A commandline utility to convert JSON to YAML / YML",
"keywords": [
"yml",
"yaml",
"json",
"cli",
"util"
],
"version": "1.1.0",
"license": "Apache-2.0",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/coolaj86/json2yaml.git"
},
"bin": {
"json2yaml": "./cli.js",
"jsontoyaml": "./cli.js",
"jsontoyml": "./cli.js",
"json2yml": "./cli.js"
},
"engines": {
"node": ">= 0.2.0"
},
"test": "echo 'error no test'; exit 1",
"dependencies": {
"remedial": "1.x",
"wordwrap": "^1.0.0"
},
"devDependencies": {},
"preferGlobal": true
}