datastructure-ts
Version:
Collection of data structures(LinkedList, DoubleLinkedList, Stack, Queue, Dictionary and etc...) for TypeScript.
63 lines (62 loc) • 1.56 kB
JSON
{
"name": "datastructure-ts",
"version": "0.1.18",
"description": "Collection of data structures(LinkedList, DoubleLinkedList, Stack, Queue, Dictionary and etc...) for TypeScript.",
"scripts": {
"build": "tsc",
"test": "mocha dist/tests/**/*.spec.js --reporter spec",
"test_watch": "tsc && mocha dist/tests/**/*.spec.js --reporter spec --watch",
"cover": "istanbul cover node_modules/mocha/bin/_mocha dist/tests/**/*.spec.js -- -R spec",
"cover:nyx": "nyc npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Slashmsu/TSDataStructure.git"
},
"keywords": [
"DataStructure",
"TypeScript",
"Dictionary",
"List",
"Stack",
"Queue",
"BinaryTree"
],
"author": "Bakhtier Gaibulloev",
"license": "MIT",
"bugs": {
"url": "https://github.com/Slashmsu/TSDataStructure/issues"
},
"nyc": {
"extension": [
".ts",
".tsx"
],
"exclude": [
"coverage",
"**/*.d.ts",
"**/*.spec.ts"
],
"reporter": [
"text"
],
"all": true
},
"homepage": "https://github.com/Slashmsu/TSDataStructure#readme",
"devDependencies": {
"@types/chai": "^4.2.3",
"@types/lodash": "^4.14.191",
"@types/mocha": "^5.2.7",
"chai": "^4.2.0",
"coveralls": "^3.0.6",
"istanbul": "^0.4.5",
"lodash": "^4.17.21",
"mocha": "^10.2.0",
"nodemon": "^2.0.20",
"nyc": "^14.1.1",
"tslint": "^5.20.0",
"tslint-config-airbnb": "^5.11.2",
"typescript": "^3.6.3"
},
"dependencies": {}
}