-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
71 lines (71 loc) · 1.83 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
68
69
70
71
{
"name": "zstd-napi",
"version": "0.0.8",
"description": "zstd bindings with N-API",
"repository": {
"type": "git",
"url": "https://github.com/drakedevel/zstd-napi.git"
},
"license": "Apache-2.0",
"author": "Andrew Drake <[email protected]>",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"NOTICE",
"binding.d.ts",
"binding.gyp",
"binding.js",
"deps",
"dist",
"src"
],
"binary": {
"napi_versions": [
8
]
},
"scripts": {
"build": "node-gyp configure && node-gyp build",
"ci-ignore-scripts": "npm ci --ignore-scripts",
"clang-format": "clang-format -i src/*",
"install": "prebuild-install -r napi || node-gyp rebuild",
"lint": "eslint .",
"prepare": "tsc -p tsconfig.emit.json",
"prettier": "prettier -l --write .",
"submodule-update": "git submodule update --init",
"test": "jest",
"test-coverage": "jest --coverage --coverageReporters=json",
"typedoc": "typedoc"
},
"dependencies": {
"@types/node": "*",
"node-addon-api": "^7.0.0",
"prebuild-install": "^7.1.1"
},
"devDependencies": {
"@eslint/js": "9.15.0",
"@fast-check/jest": "2.0.3",
"@tsconfig/node18": "18.2.4",
"@tsconfig/strictest": "2.0.5",
"@types/eslint": "9.6.1",
"@types/eslint__js": "8.42.3",
"@types/eslint-config-prettier": "6.11.3",
"@types/jest": "29.5.14",
"eslint": "9.15.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-jest": "28.9.0",
"eslint-plugin-tsdoc": "0.3.0",
"expect-type": "1.1.0",
"globals": "15.12.0",
"jest": "29.7.0",
"node-gyp": "10.1.0",
"prettier": "3.4.1",
"ts-jest": "29.2.5",
"typedoc": "0.27.1",
"typescript": "5.6.2",
"typescript-eslint": "8.16.0"
},
"engines": {
"node": "^12.22.0 || ^14.17.0 || ^15.12.0 || >=16"
}
}