UNPKG

linked-list-typescript

Version:

simple typescript linked-list with generics typing

51 lines (50 loc) 1.68 kB
{ "name": "linked-list-typescript", "version": "1.0.15", "description": "simple typescript linked-list with generics typing", "main": "lib/src/index.js", "typings": "lib/src/index", "files": [ "lib/src/" ], "repository": "https://github.com/sfkiwi/linked-list-typescript.git", "author": "Mike Sutherland <mjfsutherland@gmail.com>", "license": "MIT", "private": false, "keywords": [ "typescript", "javascript", "linked-list", "linkedlist" ], "bugs": { "url": "https://github.com/sfkiwi/linked-list-typescript/issues" }, "homepage": "https://github.com/sfkiwi/linked-list-typescript#readme", "scripts": { "pretest": "yarn run build", "build": "tsc", "test": "nyc ./node_modules/.bin/mocha", "coverage": "yarn run build && nyc ./node_modules/.bin/mocha", "coverage:lcov": "nyc report --reporter=text-lcov | coveralls", "coverage:report": "./node_modules/.bin/nyc report --reporter text-summary --reporter html && open coverage/index.html", "cover": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage", "clean": "rm -fr clean coverage .nyc_output" }, "devDependencies": { "@types/chai": "^4.1.2", "@types/mocha": "^5.2.0", "chai": "^4.1.2", "coveralls": "^3.0.1", "eslint": "^4.18.1", "eslint-plugin-react": "^7.7.0", "expect.js": "^0.3.1", "istanbul": "^0.4.5", "mocha": "^4.0.1", "mocha-lcov-reporter": "^1.3.0", "nyc": "^11.6.0", "source-map-support": "^0.5.4", "ts-node": "^5.0.1", "typescript": "^2.8.1" } }