-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
47 lines (47 loc) · 1.09 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
{
"name": "@codescrum/bitmask-set-jsbi",
"version": "1.0.0",
"type": "module",
"description": "Convert arrays to bitmask representations to quickly operate with them through bitwise operations.",
"main": "index.js",
"directories": {
"lib": "lib",
"test": "test"
},
"files": [
"lib/*",
"index.js"
],
"dependencies": {
"jsbi": "^3.1.1"
},
"devDependencies": {
"eslint": "^8.23.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.2.5",
"eslint-plugin-promise": "^6.0.1",
"lodash": "^4.17.21",
"mocha": "^10.0.0"
},
"scripts": {
"test": "mocha"
},
"repository": {
"type": "git",
"url": "https://github.com/codescrum/bitmask-set-jsbi-js/"
},
"keywords": [
"array optimization",
"array intersection optimization",
"bitmask",
"bitwise",
"bitmask set",
"set intersect",
"set optimization",
"set intersection"
],
"author": "Miguel Diaz @ Codescrum Ltd",
"license": "MIT",
"homepage": "https://github.com/codescrum/bitmask-set-jsbi-js/"
}