-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathpackage.json
48 lines (48 loc) · 996 Bytes
/
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
{
"name": "jsonexport",
"version": "2.0.11",
"description": "Makes easy to convert JSON to CSV",
"main": "./lib",
"scripts": {
"test": "mocha tests/*.js tests/**/*.js",
"lint": "./node_modules/.bin/jshint ./lib/index.js"
},
"bin": {
"jsonexport": "bin/jsonexport.js"
},
"repository": {
"type": "git",
"url": "https://github.com/kauegimenes/jsonexport.git"
},
"keywords": [
"export",
"json",
"to",
"2",
"csv",
"converter",
"output",
"array",
"object",
"json-to-csv",
"json2csv",
"parse",
"stream",
"transform",
"big",
"files"
],
"author": "Kauê Gimenes",
"license": "ISC",
"bugs": {
"url": "https://github.com/kauegimenes/jsonexport/issues"
},
"homepage": "https://github.com/kauegimenes/jsonexport",
"devDependencies": {
"benchmark": "^2.1.4",
"chai": "^4.0.1",
"jshint": "^2.9.4",
"mocha": "^3.1.0"
},
"runkitExampleFilename": "examples/simple.js"
}