topological-sort
Version:
Topological sort
40 lines (39 loc) • 948 B
JSON
{
"name": "topological-sort",
"version": "0.3.0",
"description": "Topological sort",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/1999/topological-sort.git"
},
"scripts": {
"build": "tsc",
"clean": "rm -fr dist/",
"lint": "tslint -p . -c tslint.json 'src/*.ts'",
"prepublishOnly": "npm run clean && npm run build",
"test:unit": "mocha --require ts-node/register src/*.spec.ts",
"test": "npm run lint && npm run test:unit"
},
"author": "Dmitrii Sorin <info@staypositive.ru>",
"license": "MIT",
"engines": {
"node": ">=8"
},
"devDependencies": {
"@types/mocha": "^5.2.5",
"@types/node": "^10.5.2",
"mocha": "^5.0.0",
"ts-node": "^7.0.0",
"tslint": "^5.11.0",
"typescript": "^2.9.2"
},
"keywords": [
"topological sort",
"topological",
"sort",
"graph",
"dependencies"
],
"types": "dist/index.d.ts"
}