forked from mourner/tinyqueue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 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
50
51
52
53
{
"name": "tinyqueue",
"version": "2.0.3",
"description": "The smallest and simplest JavaScript priority queue",
"main": "tinyqueue.js",
"module": "index.js",
"jsdelivr": "tinyqueue.min.js",
"unpkg": "tinyqueue.min.js",
"types": "index.d.ts",
"scripts": {
"lint": "eslint index.js test.js bench.js rollup.config.js",
"pretest": "npm run lint",
"test": "tape -r esm test.js",
"bench": "node -r esm bench.js",
"build": "rollup -c",
"watch": "rollup -cw",
"prepublishOnly": "npm test"
},
"files": [
"index.js",
"tinyqueue.js",
"tinyqueue.min.js",
"index.d.ts"
],
"repository": {
"type": "git",
"url": "https://github.com/mourner/tinyqueue.git"
},
"keywords": [
"queue",
"priority",
"binary heap",
"data structures"
],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/mourner/tinyqueue/issues"
},
"homepage": "https://github.com/mourner/tinyqueue",
"devDependencies": {
"eslint": "^5.16.0",
"eslint-config-mourner": "^3.0.0",
"esm": "^3.2.25",
"rollup": "^1.15.4",
"rollup-plugin-buble": "^0.19.6",
"rollup-plugin-terser": "^5.0.0",
"tape": "^4.10.2"
},
"eslintConfig": {
"extends": "mourner"
}
}