-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
44 lines (44 loc) · 1.3 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
{
"name": "xxhash-addon",
"version": "2.0.3",
"description": "Yet another xxhash addon for Node.js",
"main": "xxhash-addon.js",
"typings": "index.d.ts",
"scripts": {
"install": "node-gyp rebuild --ensure --jobs max",
"test": "jest",
"benchmark": "node benchmark.js",
"ci:build": "node-gyp rebuild --verbose --ensure --jobs max",
"debug:build": "DEBUG=1 node-gyp rebuild --debug --verbose --ensure --jobs max",
"debug:build:windows": "set DEBUG=1 && node-gyp rebuild --debug --verbose --ensure --jobs max && set DEBUG=",
"debug:test:windows": "set DEBUG=1 && node node_modules/jest/bin/jest.js && set DEBUG=",
"debug:benchmark:windows": "set DEBUG=1 && node benchmark.js && set DEBUG="
},
"files": [
"/xxHash/xxhash.h",
"/src",
"binding.gyp",
"index.d.ts",
"xxhash-addon.js"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ktrongnhan/xxhash-addon.git"
},
"keywords": [
"xxhash",
"hash"
],
"author": "Nhan Khong <[email protected]>",
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/ktrongnhan/xxhash-addon/issues"
},
"homepage": "https://github.com/ktrongnhan/xxhash-addon#readme",
"engines": {
"node": ">=8.6.0 <9.0.0 || >=10.0.0"
},
"devDependencies": {
"jest": "^25.5.4"
}
}