-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.22 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
{
"name": "lytepq",
"version": "1.1.9",
"description": "A small and mighty suite of data structures in JavaScript.",
"main": "lib/index.js",
"module": "src/index.js",
"types": "src/index.d.ts",
"scripts": {
"lint": "eslint src/**/*.js rollup.config.js",
"build": "rollup -c",
"test": "tape -r esm tests/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/robertzhidealx/LytePQ.git"
},
"files": [
"src/**/index.js",
"src/index.d.ts",
"lib/index.js"
],
"keywords": [
"javascript",
"priority",
"queue",
"binary heap",
"disjoint sets",
"union find",
"data structures",
"algorithms"
],
"author": "Robert Zhang",
"license": "MIT",
"bugs": {
"url": "https://github.com/robertzhidealx/LytePQ/issues"
},
"homepage": "https://github.com/robertzhidealx/LytePQ#readme",
"devDependencies": {
"@rollup/plugin-buble": "^0.21.3",
"@rollup/plugin-multi-entry": "^4.0.0",
"@typescript-eslint/eslint-plugin": "^4.28.3",
"@typescript-eslint/parser": "^4.28.3",
"eslint": "^7.30.0",
"esm": "^3.2.25",
"rollup": "^2.53.2",
"rollup-plugin-dts": "^3.0.2",
"tape": "^5.2.2",
"typescript": "^4.3.5"
}
}