forked from zemirco/json2csv
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.84 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 1.84 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
{
"name": "json2csv-clickhouse",
"version": "5.0.3",
"description": "Convert JSON to CSV. Export Array compliant with Clickhouse import. Forked from json2csv",
"keywords": [
"json",
"to",
"csv",
"export",
"convert",
"parse"
],
"author": {
"name": "XiChi Zhu",
"email": "kilik52@outlook.com"
},
"license": "MIT",
"bin": {
"json2csv": "./bin/json2csv.js"
},
"main": "lib/json2csv.js",
"module": "dist/json2csv.esm.js",
"browser": "dist/json2csv.umd.js",
"repository": {
"type": "git",
"url": "https://github.com/enteve/json2csv"
},
"homepage": "https://github.com/enteve/json2csv",
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"test": "node test | tap-spec",
"lint": "eslint bin lib test",
"test-with-coverage": "nyc --reporter=text node test | tap-spec",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"deploy:docs": "docpress b && gh-pages -d _docpress",
"prepublish": "in-publish && npm run before:publish || not-in-publish",
"before:publish": "npm test && npm run build",
"release": "standard-version"
},
"dependencies": {
"commander": "^6.2.0",
"jsonparse": "^1.3.1",
"lodash.get": "^4.4.2"
},
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/preset-env": "^7.12.1",
"coveralls": "^3.1.0",
"docpress": "^0.8.2",
"eslint": "^7.13.0",
"gh-pages": "^3.1.0",
"in-publish": "^2.0.1",
"nyc": "^15.1.0",
"rollup": "^2.33.2",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-polyfills": "^0.2.1",
"rollup-plugin-node-resolve": "^5.2.0",
"standard-version": "^9.0.0",
"tap-spec": "^5.0.0",
"tape": "^5.0.1"
},
"engines": {
"node": ">= 10",
"npm": ">= 6.13.0"
},
"volta": {
"node": "10.19.0"
}
}