-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.01 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
{
"name": "minmaxheaps",
"version": "1.0.0",
"description": "Min-Max heap implementation (generalized priority queues)",
"main": "dist/index.js",
"browser": "dist/minmaxheaps.min.js",
"directories": {
"test": "tests"
},
"scripts": {
"test": "mocha --compilers js:@babel/register tests",
"build": "npm test && rollup -c"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sisobus/MinMaxHeap.git"
},
"keywords": [
"minmaxheap",
"tree",
"priority_queue",
"pq",
"lightweight"
],
"author": "sisobus <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/sisobus/MinMaxHeap/issues"
},
"homepage": "https://github.com/sisobus/MinMaxHeap#readme",
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.1.6",
"@babel/preset-env": "^7.1.6",
"@babel/register": "^7.0.0",
"chai": "^4.2.0",
"rollup-plugin-babel": "^4.0.3",
"rollup-plugin-eslint": "^5.0.0",
"rollup-plugin-uglify": "^6.0.0"
}
}