async-dependency-graph
Version:
A dependency graph that can traverse asynchronous nodes.
42 lines (41 loc) • 1.23 kB
JSON
{
"name": "async-dependency-graph",
"version": "1.1.5",
"description": "A dependency graph that can traverse asynchronous nodes.",
"main": "dist/library.js",
"types": "dist/library.d.js",
"author": "Chris Woodle <chriswoodle@outlook.com>",
"scripts": {
"build": "npm run tslint && tsc",
"watch": "npm run tslint && tsc --watch --preserveWatchOutput",
"clean": "rm -rf ./dist",
"prepack": "npm run tslint-prod && npm run build",
"tslint": "tslint -c tslint.json -t stylish 'src/**/*.ts' --force",
"tslint-prod": "tslint -c tslint.json -t stylish 'src/**/*.ts'",
"test": "mocha -r ts-node/register src/**/*.spec.ts",
"doc": "typedoc --tsconfig ./tsconfig.json ./src"
},
"repository": {
"type": "git",
"url": "https://github.com/chriswoodle/async-dependency-graph.git"
},
"license": "MIT",
"keywords": [
"graph",
"async",
"dependency",
"tree"
],
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/mocha": "^7.0.2",
"@types/node": "^13.11.1",
"chai": "^4.2.0",
"mocha": "^7.1.1",
"source-map-support": "^0.5.16",
"ts-node": "^8.8.2",
"tslint": "^6.1.1",
"typedoc": "^0.21.0",
"typescript": "^4.0.0"
}
}