1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- {
- "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"
- }
- }
|