45 lines
1.1 KiB
JSON
45 lines
1.1 KiB
JSON
{
|
|
"name": "@datastructures-js/heap",
|
|
"version": "4.3.2",
|
|
"description": "Min/Max Heap & Heap Sort implementation in javascript",
|
|
"main": "index.js",
|
|
"types": "index.d.ts",
|
|
"scripts": {
|
|
"test": "grunt test"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/datastructures-js/heap.git"
|
|
},
|
|
"keywords": [
|
|
"heap",
|
|
"min heap",
|
|
"min heap data structure",
|
|
"max heap",
|
|
"max heap data structure",
|
|
"heap js",
|
|
"heap data structure",
|
|
"heap es6",
|
|
"heap sort",
|
|
"heapify"
|
|
],
|
|
"author": "Eyas Ranjous <eyas-ranjous@gmail.com>",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/datastructures-js/heap/issues"
|
|
},
|
|
"homepage": "https://github.com/datastructures-js/heap#readme",
|
|
"devDependencies": {
|
|
"chai": "^4.2.0",
|
|
"eslint": "^6.7.2",
|
|
"eslint-config-airbnb-base": "^14.0.0",
|
|
"eslint-plugin-import": "^2.19.1",
|
|
"grunt": "^1.0.4",
|
|
"grunt-eslint": "^22.0.0",
|
|
"grunt-mocha-istanbul": "^5.0.2",
|
|
"grunt-mocha-test": "^0.13.3",
|
|
"istanbul": "^0.4.5",
|
|
"mocha": "^6.2.2"
|
|
}
|
|
}
|