forked from zemirco/json2csv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.53 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
{
"name": "json2csv",
"preferGlobal": "true",
"version": "3.7.3",
"description": "Convert JSON to CSV",
"keywords": [
"json",
"to",
"csv",
"export",
"convert",
"parse"
],
"author": {
"name": "Mirco Zeiss",
"email": "mirco.zeiss@gmail.com",
"twitter": "zeMirco"
},
"license": "MIT",
"bin": {
"json2csv": "./bin/json2csv.js"
},
"main": "./lib/json2csv.js",
"repository": {
"type": "git",
"url": "https://github.com/zemirco/json2csv"
},
"scripts": {
"build": "webpack",
"test": "node test | tap-spec",
"test-coverage": "istanbul cover test/index.js --report lcovonly | tap-spec",
"deploy:docs": "docpress b && git-update-ghpages zemirco/json2csv _docpress",
"prepublish": "in-publish && npm run before:publish || not-in-publish",
"before:publish": "npm test && npm run build && npm run deploy:docs && npm run release",
"release": "standard-version"
},
"dependencies": {
"cli-table": "^0.3.1",
"commander": "^2.8.1",
"debug": "^2.2.0",
"flat": "^2.0.0",
"lodash.flatten": "^4.2.0",
"lodash.get": "^4.3.0",
"lodash.set": "^4.3.0",
"lodash.uniq": "^4.3.0",
"lodash.clonedeep": "^4.3.0",
"path-is-absolute": "^1.0.0"
},
"devDependencies": {
"async": "^2.0.1",
"docpress": "^0.7.0",
"eslint": "^3.3.1",
"git-update-ghpages": "^1.3.0",
"in-publish": "^2.0.0",
"istanbul": "^0.4.3",
"standard-version": "^4.0.0",
"tap-spec": "^4.1.0",
"tape": "^4.0.0",
"webpack": "^1.13.1"
}
}