-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
64 lines (64 loc) · 1.6 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
55
56
57
58
59
60
61
62
63
64
{
"name": "js-yaml-cli",
"version": "0.7.0",
"description": "Command-line utilities to convert YAML files to JSON files and vice versa.",
"keywords": [
"yaml",
"json",
"parser",
"serializer",
"cli"
],
"homepage": "https://github.com/k7sleeper/js-yaml-cli",
"author": {
"name": "Klaus Sevensleeper",
"email": "[email protected]"
},
"bugs": {
"url": "https://github.com/k7sleeper/js-yaml-cli/issues"
},
"license": {
"type": "MIT",
"url": "https://github.com/k7sleeper/js-yaml-cli/blob/master/LICENSE"
},
"repository": {
"type": "git",
"url": "git://github.com/k7sleeper/js-yaml-cli.git"
},
"main": "./lib",
"bin": {
"yaml2json": "bin/yaml2json.js",
"json2yaml": "bin/json2yaml.js"
},
"scripts": {
"build": "grunt build",
"prepublish": "npm run build",
"test": "node ./node_modules/jasmine-node/bin/jasmine-node --verbose --color --coffee --captureExceptions test"
},
"dependencies": {
"argparse": "~ 0.1.15",
"js-yaml": "~ 3.0.1",
"lodash": "~2.4.1",
"underscore.string": "~2.3.3",
"readdirp": "~0.3.2",
"colors": "~0.6.2"
},
"devDependencies": {
"shelljs": ">=0.2.6",
"coffee-script": ">=1.6.0",
"coffeelint": ">=1.0.3",
"grunt": ">=0.4.1",
"grunt-contrib-copy": ">=0.4.1",
"grunt-contrib-coffee": ">=0.7.0",
"grunt-contrib-watch": ">=0.5.3",
"grunt-coffeelint": ">=0.0.7",
"jasmine-node": ">=1.11.0",
"jasmine-expect": ">=1.21.0"
},
"optionalDependencies": {},
"engineStrict": true,
"engines": {
"node": ">= 0.10.21"
},
"preferGlobal": true
}