stack-typescript
Version:
Simple Typescript Stack with generics type support
53 lines (52 loc) • 1.67 kB
JSON
{
"name": "stack-typescript",
"version": "1.0.4",
"description": "Simple Typescript Stack with generics type support",
"main": "lib/src/index.js",
"typings": "lib/src/index",
"files": [
"lib/src/"
],
"repository": "https://github.com/sfkiwi/stack-typescript.git",
"author": "Mike Sutherland <mjfsutherland@gmail.com>",
"license": "MIT",
"private": false,
"keywords": [
"typescript",
"javascript",
"linked-list",
"linkedlist",
"stack"
],
"bugs": {
"url": "https://github.com/sfkiwi/stack-typescript/issues"
},
"homepage": "https://github.com/sfkiwi/stack-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 build 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",
"mocha": "^4.0.1",
"nyc": "^11.6.0",
"source-map-support": "^0.5.4",
"ts-node": "^5.0.1",
"typescript": "^2.8.1"
},
"dependencies": {
"linked-list-typescript": "^1.0.11"
}
}