x3-linkedlist
Version:
A doubly linked list implementation
56 lines (55 loc) • 1.53 kB
JSON
{
"name": "x3-linkedlist",
"version": "1.2.0",
"description": "A doubly linked list implementation",
"keywords": [
"linkedlist",
"array",
"iterator",
"list",
"linked",
"doublelinked"
],
"homepage": "https://github.com/x3cion/x3-linkedlist",
"bugs": {
"url": "https://github.com/x3cion/x3-linkedlist/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/x3cion/x3-linkedlist.git"
},
"license": "MIT",
"author": "Benno Dreißig",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "rimraf dist/ && tsc -p tsconfig.compile.json",
"doc": "rimraf docs/typedoc && typedoc src/",
"full": "npm run lint && npm run build && npm run test && npm run doc",
"lint": "eslint --fix \"**/*\"",
"prepublishOnly": "npm run full",
"test": "jest --coverage",
"watch": "rimraf dist/ && tsc -p tsconfig.compile.json -w"
},
"devDependencies": {
"@types/jest": "25.*",
"@types/node": "10.*",
"@typescript-eslint/eslint-plugin": "2.27.*",
"@typescript-eslint/parser": "2.27.*",
"eslint": "6.8.*",
"eslint-config-prettier": "6.10.*",
"eslint-plugin-jest": "23.8.*",
"eslint-plugin-json-format": "2.0.1",
"eslint-plugin-prettier": "^3.1.2",
"jest": "25.3.0",
"prettier": "2.0.*",
"rimraf": "^3.0.2",
"ts-jest": "25.3.*",
"typedoc": "0.17.*",
"typedoc-plugin-markdown": "^2.2.17",
"typescript": "3.8.*"
},
"engines": {
"node": ">=10"
}
}