-
Notifications
You must be signed in to change notification settings - Fork 39
/
package.json
37 lines (37 loc) · 866 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
{
"name": "objects-to-csv",
"version": "1.3.6",
"description": "Converts an array of objects into a CSV file. Saves CSV to disk or returns as string.",
"main": "index.js",
"scripts": {
"test": "node node_modules/jest/bin/jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/anton-bot/objects-to-csv.git"
},
"keywords": [
"csv",
"object-to-csv",
"async-csv",
"converters",
"conversion",
"utilities",
"utils",
"json-to-csv",
"json2csv",
"array-to-csv"
],
"author": "Anton Ivanov <[email protected]>",
"license": "Unlicense",
"bugs": {
"url": "https://github.com/anton-bot/objects-to-csv/issues"
},
"homepage": "https://github.com/anton-bot/objects-to-csv#readme",
"dependencies": {
"async-csv": "^2.1.3"
},
"devDependencies": {
"jest": "^24.9.0"
}
}