UNPKG

algorithmpool

Version:
49 lines (48 loc) 1.47 kB
{ "name": "algorithmpool", "version": "1.2.0", "description": "A pool of algorithms and data-structures for geeks", "main": "src/index.js", "scripts": { "start": "nodemon --exec babel-node ./src/index.js", "build": "babel src --out-dir ./dist --source-maps", "serve": "node ./dist/index.js", "debug": "node --inspect-brk ./dist/index.js", "test": "mocha --require @babel/register src/test/sort", "cover": "node_modules/istanbul/lib/cli.js cover node_modules/mocha/bin/_mocha -- --require @babel/register -R spec src/test/*" }, "repository": { "type": "git", "url": "git+https://github.com/geekfarmeropensource/algorithmpool.js.git" }, "keywords": [ "CS", "Algorithms", "Data", "Structures", "Programming", "coding" ], "author": "Anurag Patel <anuragpatel.optnio@gmail.com> (http://www.geekfarmer.tech)", "license": "MIT", "bugs": { "url": "https://github.com/geekfarmeropensource/algorithmpool.js/issues" }, "homepage": "https://github.com/geekfarmeropensource/algorithmpool.js#readme", "dependencies": { "esm": "^3.2.18", "functional-red-black-tree": "^1.0.1" }, "devDependencies": { "@babel/cli": "^7.2.3", "@babel/core": "^7.3.4", "@babel/node": "^7.2.2", "@babel/preset-env": "^7.3.4", "@babel/register": "^7.0.0", "chai": "^4.2.0", "coveralls": "^3.0.3", "istanbul": "^0.4.5", "mocha": "^6.0.2", "nodemon": "^1.18.10" } }