forked from coolaj86/json2yaml
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 751 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 751 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
36
37
38
39
40
41
{
"name": "json-to-pretty-yaml",
"description": "A node module to convert JSON to YAML",
"version": "1.2.2",
"main": "index.js",
"scripts": {
"test": "jest"
},
"dependencies": {
"remedial": "^1.0.7",
"remove-trailing-spaces": "^1.0.6"
},
"devDependencies": {
"jest": "^22.4.3"
},
"contributors": [
{
"name": "Alex Crist",
"email": "alexecrist@gmail.com"
},
{
"name": "AJ ONeal",
"email": "coolaj86@gmail.com"
}
],
"keywords": [
"yml",
"yaml",
"json",
"cli",
"util"
],
"engines": {
"node": ">= 0.2.0"
},
"repository": {
"type": "git",
"url": "https://github.com/alexcrist/json-to-pretty-yaml.git"
},
"license": "Apache-2.0"
}