-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.2 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "dag-maker",
"version": "1.0.2",
"description": "DAG maker",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"scripts": {
"build": "tsc -p .",
"clean": "tsc --build --clean",
"lint": "eslint --ext .js,.ts ./src",
"lint:fix": "eslint --fix --ext .js,.ts ./src",
"test": "npm run build && c8 ava",
"pack": "npm run build && npm pack",
"pack:dry-run": "npm run build && npm pack --dry-run"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bsdelf/dag-maker.git"
},
"keywords": [
"DAG",
"directed acyclic graph",
"topological sorting",
"dependency resolution",
"dependency injection",
"graph",
"vertex",
"factory"
],
"author": "Yanhui Shen",
"license": "MIT",
"bugs": {
"url": "https://github.com/bsdelf/dag-maker/issues"
},
"homepage": "https://github.com/bsdelf/dag-maker#readme",
"devDependencies": {
"@types/node": "^18.14.2",
"@typescript-eslint/eslint-plugin": "^5.54.0",
"@typescript-eslint/parser": "^5.54.0",
"ava": "^5.2.0",
"c8": "^7.13.0",
"eslint": "^8.35.0",
"typescript": "^4.9.5"
},
"ava": {
"failFast": true,
"verbose": true
}
}