-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
116 lines (116 loc) · 3.14 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "roaring",
"version": "2.4.1",
"private": false,
"description": "CRoaring official port for NodeJS",
"keywords": [
"CRoaring",
"Roaring",
"bitmaps"
],
"license": "Apache-2.0",
"author": "Salvatore Previti",
"homepage": "https://github.com/SalvatorePreviti/roaring-node#readme",
"bugs": {
"url": "https://github.com/SalvatorePreviti/roaring/issues"
},
"documentation": [
"https://salvatorepreviti.github.io/roaring-node/modules.html",
"https://salvatorepreviti.github.io/roaring-node/classes/RoaringBitmap32.html"
],
"repository": {
"type": "git",
"url": "git+https://github.com/SalvatorePreviti/roaring-node.git"
},
"engines": {
"node": ">=16.14.0"
},
"main": "index.js",
"types": "index.d.ts",
"typings": "index.d.ts",
"files": [
"roaring-node.cpp",
"LICENSE.md",
"README.md",
"binding.gyp",
"index.js",
"build.js",
"index.d.ts",
"node-pre-gyp.js",
"RoaringBitmap32.js",
"RoaringBitmap32.d.ts",
"RoaringBitmap32Iterator.js",
"RoaringBitmap32Iterator.d.ts",
"RoaringBitmap32ReverseIterator.js",
"RoaringBitmap32ReverseIterator.d.ts"
],
"binary": {
"module_name": "roaring",
"module_path": "./native/roaring-{node_abi}-{platform}-{arch}",
"host": "https://github.com/SalvatorePreviti/roaring-node/releases/download/",
"remote_path": "{version}"
},
"scripts": {
"install": "node ./node-pre-gyp.js install --fallback-to-build",
"compile": "node ./node-pre-gyp.js rebuild",
"build": "node ./scripts/build.js",
"update-roaring": "./scripts/update-roaring.sh",
"build-dev": "node ./scripts/build.js --dev",
"test": "node ./scripts/test.js",
"lint": "eslint . && tsc",
"lint:fix": "eslint . --fix && prettier --write . && tsc",
"doc": "typedoc ./index.d.ts",
"benchmarks": "node --expose-gc ./scripts/benchmarks.js"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"dependencies": {
"@mapbox/node-pre-gyp": "^1.0.11"
},
"peerDependencies": {
"node-gyp": "^10.2.0"
},
"peerDependenciesMeta": {
"node-gyp": {
"optional": true
}
},
"optionalDependencies": {
"node-gyp": "^10.2.0"
},
"devDependencies": {
"@balsamic/eslint-config": "^0.7.0",
"@octokit/rest": "20.1.1",
"@types/chai": "^4.3.19",
"@types/chai-as-promised": "^7.1.8",
"@types/mocha": "^10.0.9",
"@types/node": "^22.7.5",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"benchmark": "^2.1.4",
"chai": "^4.5.0",
"chai-as-promised": "^7.1.2",
"esbuild": "^0.24.0",
"eslint": "^8.57.1",
"eslint-plugin-chai-expect": "^3.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-json": "^4.0.1",
"eslint-plugin-node": "^11.1.0",
"fastbitset": "^0.4.1",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"mocha": "^10.7.3",
"node-fetch-cjs": "^3.3.2",
"physical-cpu-count": "^2.0.0",
"prettier": "^3.3.3",
"tslib": "^2.7.0",
"tsx": "^4.19.1",
"typedoc": "^0.26.8",
"typescript": "5.6.2"
},
"gypfile": true,
"roaring_version": "4.2.1"
}