-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.05 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
{
"name": "topo-kahn",
"version": "1.1.0",
"description": "Topological sort (Kahn algorithm) an oriented graph containing any kind of node, using ES6 Maps & Sets.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run build",
"test": "jest",
"test-ci": "jest --coverage --coverageReporters=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/liitfr/topo-kahn.git"
},
"keywords": [
"dependency-graph",
"dependency-resolution",
"topological-sort",
"topological-order",
"kahns-alogrithm",
"kahn"
],
"author": "liitfr",
"license": "MIT",
"bugs": {
"url": "https://github.com/liitfr/topo-kahn/issues"
},
"homepage": "https://github.com/liitfr/topo-kahn#readme",
"dependencies": {},
"devDependencies": {
"@types/jest": "24.0.15",
"@types/node": "12.6.8",
"coveralls": "3.0.5",
"jest": "24.8.0",
"ts-jest": "24.0.2",
"typescript": "2.9.2"
}
}