-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.24 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
{
"name": "@kartjim/priority-queue",
"version": "1.0.3",
"description": "Priority queue implementation in JavaScript",
"main": "priorityqueue.js",
"module": "index.js",
"jsdelivr": "priorityqueue.min.js",
"unpkg": "priorityqueue.min.js",
"types": "index.d.ts",
"scripts": {
"lint": "eslint index.js __test__/test.js __test__/bench.js",
"test": "tape -r esm __test__/test.js",
"bench": "node -r esm __test__/bench.js",
"build": "rollup -c",
"watch": "rollup -cw",
"pretest": "npm run lint",
"prepublishOnly": "npm test"
},
"files": [
"index.js",
"index.d.ts",
"priorityqueue.js",
"priorityqueue.min.js"
],
"repository": {
"type": "git",
"url": "git+https://github.com/can-dy-jack/priority-queue.git"
},
"keywords": [
"priority-queue",
"JavaScript",
"js",
"data-structure"
],
"author": "can-dy-jack",
"license": "MIT",
"bugs": {
"url": "https://github.com/can-dy-jack/priority-queue/issues"
},
"homepage": "https://github.com/can-dy-jack/priority-queue#readme",
"devDependencies": {
"@rollup/plugin-buble": "^1.0.1",
"@rollup/plugin-terser": "^0.3.0",
"eslint": "^8.32.0",
"esm": "^3.2.25",
"rollup": "^3.10.0",
"tape": "^5.6.3"
}
}