-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.44 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
{
"name": "compression-test",
"version": "0.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Tyler Stiene",
"license": "UNLICENSED",
"private": true,
"eslintIgnore": [
"/coverage",
"/node_modules"
],
"eslintConfig": {
"extends": [
"airbnb-base"
],
"parserOptions": {
"ecmaVersion": 2018
},
"env": {
"node": true
},
"rules": {
"max-len": "off",
"no-underscore-dangle": "off",
"eqeqeq": "warn",
"no-restricted-syntax": [
"off",
"BinaryExpression[operator='in']"
],
"no-prototype-builtins": "off",
"prefer-destructuring": "off",
"no-param-reassign": "warn",
"no-await-in-loop": "off",
"global-require": "off",
"no-console": "off",
"no-loop-func": "off",
"consistent-return": "warn"
}
},
"dependencies": {
"@oneidentity/zstd-js": "^1.0.2",
"@xingrz/cppzst": "^2.1.0-alpha.8",
"dotenv": "^16.0.1",
"get-folder-size": "^2.0.1",
"node-zstandard": "^1.2.4",
"plotly": "^1.0.6",
"simple-zstd": "^1.4.0",
"tar-fs": "^2.1.1",
"zstd-codec": "^0.1.4",
"zstd.ts": "^1.1.3"
},
"devDependencies": {
"babel-eslint": "^10.0.2",
"eslint": "^8.21.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-import-resolver-node": "^0.3.6",
"eslint-plugin-import": "^2.26.0"
}
}