algs-adt
Version:
An npm package for using data structures like queues or graphs in javascript or typescript
38 lines (37 loc) • 1.14 kB
JSON
{
"name": "algs-adt",
"version": "1.0.7",
"description": "An npm package for using data structures like queues or graphs in javascript or typescript",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"test": "jest --config jestconfig.json",
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "tslint -p tsconfig.json",
"prepare": "npm run build",
"prepublishOnly" : "npm test && npm run lint",
"preversion" : "npm run lint",
"version" : "npm run format && git add -A src",
"postversion" : "git push && git push --tags"
},
"keywords": ["Algorithms", "List", "Array", "Linked", "Data", "Structures"],
"author": "jguevara.dev",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://gitlab.com/soyjuandavidguevara/data-structures"
},
"devDependencies": {
"@types/jest": "^27.4.1",
"jest": "^27.5.1",
"prettier": "^2.6.0",
"ts-jest": "^27.1.3",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.6.2"
},
"files": [
"lib/**/*"
]
}