-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 893 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
38
39
40
41
42
43
44
{
"name": "@tadashi/jsonb",
"version": "5.0.1",
"description": "Compress or decompress any data",
"type": "module",
"main": "src/jsonb.js",
"files": [
"src",
"LICENSE",
"README.md"
],
"scripts": {
"eslint": "eslint --config .eslintrc.yml --ext .js --ignore-path .gitignore .",
"pretest": "npm run eslint",
"test": "c8 --reporter=text --reporter=text-summary --reporter=lcov ava --tap"
},
"keywords": [
"json",
"brotli",
"buffer",
"base64"
],
"author": "Thiago Lagden",
"license": "MIT",
"engines": {
"node": ">=14.16"
},
"dependencies": {
"devalue": "4.2.0"
},
"devDependencies": {
"ava": "5.0.1",
"c8": "7.12.0",
"eslint": "8.27.0",
"eslint-config-xo": "0.43.1",
"eslint-plugin-unicorn": "44.0.2"
},
"babel": {},
"ava": {
"nodeArguments": [
"--trace-warnings"
]
}
}