-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
100 lines (100 loc) · 3.4 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "jy-transform",
"description": "This project aims to read, write and transform YAML, JS or JSON objects into each other using CLI or API, while the source and destination resources can be files on CLI and additionally, objects or streams on API level.",
"version": "2.0.1",
"homepage": "https://github.com/deadratfink/jy-transform",
"author": {
"name": "Jens Krefeldt",
"email": "[email protected]",
"url": "https://github.com/deadratfink"
},
"contributors": [
],
"license": "SEE LICENSE IN [LICENSE.md](https://github.com/deadratfink/jy-transform/blob/master/LICENSE.md)",
"repository": {
"type": "git",
"url": "https://github.com/deadratfink/jy-transform.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"bugs": "https://github.com/deadratfink/jy-transform/issues",
"private": false,
"config": {
"test": {
"mocha": {
"unit": {
"reporter": "spec"
}
}
}
},
"scripts": {
"docs": "cat docs/LOGO.md > README.md && cat docs/BADGES.md >> README.md && cat docs/TOC.md >> README.md && package-json-to-readme --no-footer ./package.json >> README.md && cat docs/USAGE.md >> README.md && echo '\n# Changelog\n' >> README.md && cat docs/CHANGELOG.md >> README.md && doctoc README.md --github --title '# TOC' --maxlevel 2",
"wiki": "jsdoc2md ./jyt lib/*.js index.js > docs/API.md && doctoc docs/API.md --github --title '### TOC' --maxlevel 2 && cat docs/API.md > '../jy-transform.wiki/API-v2.md' && cat docs/CONTRIBUTING.md > ../jy-transform.wiki/Contributing.md && cat docs/CHANGELOG.md > ../jy-transform.wiki/Changelog.md && doctoc ../jy-transform.wiki/Changelog.md --github --title '### TOC' --maxlevel 3",
"pretest": "rm -Rf test/tmp",
"test": "istanbul cover _mocha --report lcovonly -- -R $npm_package_config_test_mocha_unit_reporter ./test/test*.js"
},
"engines": {
"node": ">=0.10.0"
},
"dependencies": {
"bluebird": "^3.4.6",
"cli": "^1.0.1",
"is-stream": "^1.1.0",
"js-yaml": "^3.6.1",
"json-stringify-safe": "^5.0.1",
"mkdirp-then": "^1.2.0",
"serialize-js": "^1.1.0"
},
"devDependencies": {
"codeclimate-test-reporter": "^0.5.0",
"codecov": "^2.3.0",
"coveralls": "^2.11.14",
"doctoc": "^1.0.0",
"fs-extra": "^4.0.1",
"istanbul": "^0.4.5",
"jsdoc-parse": "^3.0.0",
"jsdoc-to-markdown": "^3.0.0",
"mocha": "^3.1.2",
"mocha-lcov-reporter": "^1.2.0",
"object-path": "^0.11.2",
"package-json-to-readme": "^2.0.0",
"winston": "^2.3.0"
},
"preferGlobal": true,
"bin": {
"jyt": "./jyt"
},
"main": "./index.js",
"keywords": [
"api",
"cli",
"jy",
"jyt",
"jy-transform",
"transform",
"convert",
"javascript",
"js",
"json",
"yaml",
"yaml2js",
"yaml-2-js",
"yaml2json",
"yaml-2-json",
"js2yaml",
"js-2-yaml",
"json2yaml",
"json-2-yaml",
"yamltojs",
"yaml-to-js",
"yamltojson",
"yaml-to-json",
"jstoyaml",
"js-to-yaml",
"jsontoyaml",
"json-to-yaml",
"promise"
]
}