-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.54 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
62
63
64
65
66
67
{
"name": "@livingdata/tabular-data-helpers",
"version": "0.0.13",
"type": "module",
"main": "lib/index.js",
"browser": "browser/index.js",
"repository": "https://github.com/livingdata-co/tabular-data-helpers",
"author": "Jérôme Desboeufs <[email protected]>",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"files": [
"lib",
"browser"
],
"scripts": {
"lint": "xo",
"test": "c8 ava",
"test-lcov": "c8 --reporter=lcov --reporter=text ava",
"transpile": "swc lib/ -d browser/",
"prepublishOnly": "npm run transpile"
},
"dependencies": {
"buffer": "^6.0.3",
"chardet": "^2.0.0",
"events": "^3.3.0",
"iconv-lite": "^0.6.3",
"papaparse": "~5.3.2",
"pumpify": "^2.0.1",
"readable-stream": "^4.5.2"
},
"devDependencies": {
"@swc/cli": "^0.4.0",
"@swc/core": "^1.6.8-nightly-20240705.2",
"ava": "^6.1.3",
"c8": "^10.1.2",
"get-stream": "^9.0.1",
"into-stream": "^8.0.1",
"xo": "^0.58.0"
},
"xo": {
"semicolon": false,
"space": 2,
"rules": {
"object-curly-newline": "off",
"comma-dangle": [
"error",
"never"
],
"import/order": [
"error",
{
"newlines-between": "always"
}
],
"unicorn/text-encoding-identifier-case": "off",
"unicorn/prefer-node-protocol": "off",
"unicorn/prevent-abbreviations": "off",
"unicorn/prefer-event-target": "off"
}
},
"engines": {
"node": ">= 20.9"
},
"packageManager": "[email protected]"
}