-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.13 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "toposource",
"version": "1.2.0",
"description": "Directed graphs analyzer for parallel traversals",
"main": "./target/cjs/index.js",
"module": "./target/esm/index.mjs",
"types": "./target/dts/index.d.ts",
"exports": {
".": {
"require": "./target/cjs/index.js",
"import": "./target/esm/index.mjs",
"types": "./target/dts/index.d.ts"
}
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "node ./node_modules/.bin/concurrently 'npm:build:*'",
"build:esm": "node ./src/scripts/build.cjs && rename -f 's/\\.js$/\\.mjs/' target/esm/*.js",
"build:cjs": "node ./src/scripts/build.cjs --cjs",
"build:dts": "tsc --emitDeclarationOnly --outDir target/dts",
"build:docs": "typedoc --options src/main/typedoc",
"lint": "eslint -c src/test/lint/.eslintrc.json src",
"format": "yarn test:lint --fix",
"test": "node ./node_modules/.bin/concurrently 'npm:test:*'",
"test:lint": "eslint -c src/test/lint/.eslintrc.json src",
"test:unit": "c8 -r html -r text -r lcov --exclude ./src/test -o ./target/coverage uvu -r tsm src/test/ts",
"test:it": "uvu -r tsm src/test/js",
"test:bench": "node src/test/bench/index.mjs"
},
"files": [
"target/cjs",
"target/esm",
"target/dts",
"README.md",
"package.json"
],
"repository": {
"type": "git",
"url": "https://github.com/semrel-extra/toposource.git"
},
"devDependencies": {
"@types/node": "^20.14.11",
"@types/toposort": "^2.0.7",
"benchmark": "^2.1.4",
"c8": "^10.1.2",
"concurrently": "^8.2.2",
"esbuild": "^0.24.0",
"esbuild-node-externals": "^1.14.0",
"eslint": "^8.56.0",
"eslint-config-qiwi": "^2.1.3",
"toposort": "^2.0.2",
"tsm": "^2.3.0",
"typedoc": "^0.27.0",
"typescript": "^5.5.3",
"uvu": "^0.5.6"
},
"keywords": [
"topological",
"sort",
"sorting",
"graphs",
"graph",
"dependency",
"list",
"dependencies",
"directed",
"acyclic",
"dag"
],
"contributors": [
"Choro Abdymanapov <[email protected]>",
"Anton Golub <[email protected]>"
],
"license": "MIT"
}