-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 864 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 864 Bytes
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
{
"name": "csv-formatter",
"version": "1.1.0",
"description": "streaming CSV formatter",
"main": "index.js",
"scripts": {
"test": "standard && tape test/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/holodex/csv-formatter.git"
},
"keywords": [
"csv",
"tsv",
"format",
"formatter"
],
"author": "ahdinosaur",
"license": "ISC",
"bugs": {
"url": "https://github.com/holodex/csv-formatter/issues"
},
"homepage": "https://github.com/holodex/csv-formatter#readme",
"dependencies": {
"defined": "^1.0.0",
"lodash.keys": "^3.1.2",
"lodash.pick": "^3.1.0",
"lodash.values": "^3.0.0",
"through2": "^2.0.0"
},
"devDependencies": {
"bl": "^1.0.0",
"csv-spectrum": "^0.3.0",
"standard": "^5.2.1",
"stream-array": "^1.1.1",
"tape": "^4.2.0"
}
}