sb-js-data-structures
Version:
JavaScript Data Structure written in TypeScript
53 lines (52 loc) • 1.26 kB
JSON
{
"name": "sb-js-data-structures",
"version": "1.0.8",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com:samaronybarros/data-structures.git"
},
"bugs": {
"url": "https://github.com:samaronybarros/data-structures/issues"
},
"homepage": "https://github.com:samaronybarros/data-structures#readme",
"author": "Sam Barros <samarony.barros@gmail.com>",
"license": "MIT",
"main": "bin/src/index.js",
"types": "bin/src/index.d.ts",
"keywords": [
"data structure",
"linked list",
"doubly linked list",
"bst",
"binary search tree",
"tree",
"graph",
"edge",
"queue",
"map",
"hash",
"hash table",
"sorted list",
"stack"
],
"dependencies": {},
"devDependencies": {
"@types/mocha": "^8.0.3",
"@types/node": "^14.6.1",
"chai": "^4.2.0",
"mocha": "^8.1.2",
"nodemon": "^2.0.4",
"prettier": "^2.1.1",
"rimraf": "^3.0.2",
"ts-node": "^9.0.0",
"tslint": "^6.1.3",
"typescript": "^4.0.2"
},
"scripts": {
"prepublish": "yarn build",
"start": "yarn build && node bin/src/index.js",
"start:dev": "nodemon",
"build": "rimraf ./bin && tsc",
"test": "yarn build && yarn mocha ./bin/src/test/*.test.js"
}
}