forked from marcelklehr/toposort
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1 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
{
"name": "@qiwi/toposort",
"version": "1.0.1",
"description": "Topological sort of directed ascyclic graphs (like dependecy lists)",
"main": "src/main/js/index.js",
"publishConfig": {
"access": "public"
},
"scripts": {
"style": "eslint src",
"style:fix": "yarn style --fix",
"verify": "yarn style && yarn test",
"test": "yarn test:unit",
"test:unit": "c8 -r html -r text -r lcov --exclude src/test uvu src/test/js"
},
"files": [
"src/main",
"README.md",
"package.json"
],
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/qiwi-forks/toposort.git"
},
"devDependencies": {
"c8": "^7.12.0",
"eslint": "^8.32.0",
"eslint-config-qiwi": "^2.0.8",
"typescript": "^4.9.4",
"uvu": "^0.5.6"
},
"keywords": [
"topological",
"sort",
"sorting",
"graphs",
"graph",
"dependency",
"list",
"dependencies",
"acyclic"
],
"author": "Marcel Klehr <[email protected]>",
"license": "MIT"
}