tstruct
Version:
Data structures & basic algorithms library
58 lines (57 loc) • 1.75 kB
JSON
{
"name": "tstruct",
"version": "0.1.0",
"description": "Data structures & basic algorithms library",
"main": "./dist/index.js",
"scripts": {
"prepare": "rm -rf ./dist && npm run build:index && npm run build && npm run build:types && npm run clean:index",
"build:index": "cti ./src --fileexcludes *.spec.ts",
"clean:index": "find ./src -name index.ts* | xargs rm",
"build:types": "tsc -d",
"build:docs": "rm -rf docs && typedoc --exclude **/*.spec.ts --exclude **/index.ts && touch ./docs/.nojekyll",
"build": "npm run lint && tsc",
"test": "jest",
"coverage": "jest --coverage=true && coveralls < coverage/lcov.info",
"test:debug": "node --inspect-brk ./node_modules/jest/bin/jest.js --runInBand",
"lint": "eslint ./src/ --ext .ts --fix --quiet"
},
"files": [
"dist/**/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/powerofsoul/tstruct.git"
},
"author": "Florin Munteanu",
"license": "ISC",
"bugs": {
"url": "https://github.com/powerofsoul/tstruct/issues"
},
"homepage": "https://github.com/powerofsoul/tstruct#readme",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^3.10.1",
"@typescript-eslint/parser": "^3.10.1",
"coveralls": "^3.1.0",
"create-index": "^2.6.0",
"create-ts-index": "^1.13.3",
"eslint": "^7.7.0",
"jest": "^26.4.0",
"ts-jest": "^26.2.0",
"typedoc": "^0.18.0",
"typescript": "^3.9.7"
},
"type": "tstruct",
"keywords": [
"data structures",
"sorting",
"heap",
"linkedlist",
"quicksort",
"quickselect",
"quickfind",
"queue",
"stack",
"algorithms",
"priority queue"
]
}