forked from any-json/any-json
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.77 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.77 KB
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
{
"name": "any-json",
"description": "Convert (almost) anything to JSON.",
"main": "./out/lib/index.js",
"typings": "./out/lib/index.d.ts",
"author": "Christian Zangl",
"contributors": [
"Adam Voss"
],
"version": "3.1.0",
"keywords": [
"json",
"hjson",
"yaml",
"cson",
"json5",
"xml",
"ini"
],
"bin": {
"any-json": "out/lib/run.js"
},
"homepage": "https://github.com/any-json/any-json",
"repository": {
"type": "git",
"url": "https://github.com/any-json/any-json.git"
},
"bugs": {
"url": "https://github.com/any-json/any-json/issues"
},
"license": "MIT",
"scripts": {
"build": "tsc",
"test": "npm run build && cp -Rf test/fixtures out/test/ && mocha --ui tdd out/test/",
"prepublish": "npm run build"
},
"dependencies": {
"cson": "^7.20.0",
"dashdash": "^2.0.0",
"fast-csv": "^4.3.6",
"format-unicorn": "^1.1.1",
"hjson": "^3.2.2",
"ini": "^2.0.0",
"js-yaml": "^4.1.0",
"json5": "^2.2.0",
"strip-json-comments": "^3.0.0",
"toml-j0.4": "^1.1.1",
"tomlify-j0.4": "^3.0.0",
"typescript": "^4.5.4",
"util.promisify": "^1.1.1",
"xlsjs": "^0.7.5",
"xlsx": "^0.17.5",
"xml2js": "^0.4.23"
},
"devDependencies": {
"@types/chai": "^4.3.0",
"@types/cson": "^7.20.1",
"@types/dashdash": "^1.14.1",
"@types/format-unicorn": "^1.1.2",
"@types/hjson": "^2.4.3",
"@types/ini": "^1.3.31",
"@types/js-yaml": "^4.0.5",
"@types/json5": "^0.0.30",
"@types/mocha": "^9.0.0",
"@types/strip-json-comments": "^3.0.0",
"@types/util.promisify": "^1.0.4",
"@types/xlsx": "^0.0.35",
"@types/xml2js": "^0.4.9",
"chai": "^4.3.4",
"mocha": "^9.1.4",
"mock-stdin": "^1.0.0",
"typescript": "^4.5.4"
}
}