doubly
Version:
Doubly linked list in TypeScript
46 lines (45 loc) • 1.06 kB
JSON
{
"name": "doubly",
"version": "0.3.2",
"description": "Doubly linked list in TypeScript",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"scripts": {
"prepublish": "npm run build",
"build": "tsc -p tsconfig.json && tsc -p tsconfig-cjs.json",
"test": "jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tjmehta/doubly.git"
},
"keywords": [
"linked",
"list",
"linked-list",
"doubly linked-list",
"doubly",
"typescript",
"array",
"methods"
],
"author": "Tejesh Mehta",
"license": "MIT",
"bugs": {
"url": "https://github.com/tjmehta/doubly/issues"
},
"homepage": "https://github.com/tjmehta/doubly#readme",
"devDependencies": {
"@babel/preset-env": "^7.10.2",
"@babel/preset-typescript": "^7.10.1",
"@types/jest": "^25.2.3",
"babel-core": "^6.26.3",
"babel-jest": "^26.0.1",
"jest": "^26.0.1",
"prettier": "^2.0.5",
"typescript": "^3.9.3"
},
"dependencies": {
"baseerr": "^1.0.1"
}
}