-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
52 lines (52 loc) · 1.11 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
{
"name": "tabular-stream",
"version": "4.0.0",
"description": "Detects tabular data (spreadsheets, dsv or json) and emits normalized objects",
"author": "Vincent Weevers",
"license": "MIT",
"main": "index.js",
"scripts": {
"test": "standard && hallmark && tape test/*.js"
},
"files": [
"example.js",
"index.js",
"LICENSE",
"README.md"
],
"dependencies": {
"coerce-tabular": "^1.0.1",
"detect-tabular": "^3.0.0",
"map-tabular-keys": "^1.0.0",
"pumpify": "^2.0.1"
},
"devDependencies": {
"concat-stream": "^2.0.0",
"deep-equal": "^2.0.5",
"hallmark": "^4.1.0",
"snake-case": "^3.0.4",
"standard": "^16.0.4",
"tape": "^5.5.0",
"through2": "^4.0.2"
},
"keywords": [
"tabular",
"spreadsheet",
"dsv",
"csv",
"tsv",
"xls",
"xlsx",
"ods",
"json",
"ndjson",
"gnumeric",
"sylk"
],
"repository": "git://github.com/vweevers/tabular-stream",
"bugs": "https://github.com/vweevers/tabular-stream/issues",
"homepage": "https://github.com/vweevers/tabular-stream",
"engines": {
"node": ">=12"
}
}