UNPKG

jstructures

Version:

The project is JavaScript Data Structures incudes Vector, List, Tree, Graph, Heap...etc

57 lines (56 loc) 1.7 kB
{ "name": "jstructures", "version": "0.8.2", "description": "The project is JavaScript Data Structures incudes Vector, List, Tree, Graph, Heap...etc", "main": "index.js", "scripts": { "lint": "eslint ./src/*", "test": "jest", "test:watch": "jest --watch src", "readme": "d=`head -n 27 README.md` && (echo \"$d\n\n\n\" && documentation build src/** -f md) > README.md", "docs": "documentation build src/** -f html -o ./docs", "release": "npm run readme && npm run docs && npm publish --registry=https://registry.npmjs.org", "ci": "npm run lint && npm run test -- --coverage" }, "pre-commit": ["lint", "test"], "repository": { "type": "git", "url": "git+https://github.com/open-node/javascript-data-structures.git" }, "keywords": [ "computer-science", "cs", "algorithms", "data-structures", "javascript", "algorithm", "javascript-data-structures", "sorting-algorithms", "heap", "left-heap", "graph", "tree", "interview", "interview-preparation" ], "author": "Redstone Zhao", "license": "MIT", "bugs": { "url": "https://github.com/open-node/javascript-data-structures/issues" }, "devDependencies": { "@types/jest": "^23.1.4", "babel-cli": "^6.26.0", "babel-eslint": "^10.0.1", "babel-preset-env": "^1.7.0", "eslint": "^4.19.1", "eslint-config-airbnb": "^17.0.0", "eslint-plugin-import": "^2.13.0", "eslint-plugin-jest": "^22.0.1", "eslint-plugin-jsx-a11y": "^6.1.0", "eslint-plugin-react": "^7.10.0", "jest": "^23.3.0", "pre-commit": "^1.2.2" }, "homepage": "https://github.com/open-node/javascript-data-structures#readme" }