54 lines
1.2 KiB
JSON
54 lines
1.2 KiB
JSON
{
|
|
"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"
|
|
}
|
|
}
|