-
Notifications
You must be signed in to change notification settings - Fork 362
/
package.json
73 lines (73 loc) · 1.86 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
{
"name": "json2csv",
"version": "6.0.0-alpha.2",
"description": "Convert JSON to CSV",
"keywords": [
"json",
"to",
"csv",
"export",
"convert",
"parse"
],
"author": {
"name": "Mirco Zeiss",
"email": "[email protected]",
"twitter": "zeMirco"
},
"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/zemirco/json2csv"
},
"homepage": "http://zemirco.github.io/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 && npm run deploy:docs",
"release": "standard-version"
},
"dependencies": {
"@streamparser/json": "^0.0.6",
"commander": "^6.2.0",
"lodash.get": "^4.4.2"
},
"devDependencies": {
"@babel/core": "^7.13.15",
"@babel/preset-env": "^7.13.15",
"coveralls": "^3.1.0",
"docpress": "^0.8.2",
"eslint": "^7.24.0",
"gh-pages": "^3.1.0",
"in-publish": "^2.0.1",
"jest": "^27.4.5",
"nyc": "^15.1.0",
"rollup": "^2.45.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.2.0",
"tap-spec": "^5.0.0",
"tape": "^5.2.2"
},
"engines": {
"node": ">= 12",
"npm": ">= 6.13.0"
},
"volta": {
"node": "12.20.0"
}
}