forked from SalvatorePreviti/roaring-node-aws
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.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
{
"name": "roaring-aws",
"version": "1.0.6",
"private": false,
"description": "roaring, precompiled for AWS lambda",
"keywords": [
"roaring",
"aws"
],
"license": "Apache-2.0",
"author": "Salvatore Previti",
"homepage": "https://github.com/SalvatorePreviti/roaring-node-aws#readme",
"bugs": {
"url": "https://github.com/SalvatorePreviti/roaring-node-aws/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SalvatorePreviti/roaring-node-aws.git"
},
"engines": {
"node": "20.x"
},
"main": "index.js",
"types": "index.d.ts",
"typings": "index.d.ts",
"files": [
"lib/roaring-aws/**/*.*",
"lib/**/*.js",
"lib/**/*.json",
"lib/**/*.node",
"README.md",
"LICENSE",
"index.js",
"index.d.ts",
"RoaringBitmap32.js",
"RoaringBitmap32.d.ts",
"RoaringBitmap32Iterator.js",
"RoaringBitmap32Iterator.d.ts"
],
"scripts": {
"build": "./build.sh",
"rebuild": "./rebuild.sh"
},
"dependencies": {
"roaring": "^2.4.0"
},
"devDependencies": {
"@types/node": "^13.1.4",
"prettier": "^1.19.1",
"typescript": "^3.7.4"
}
}