-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
120 lines (120 loc) · 3.87 KB
/
package.json
File metadata and controls
120 lines (120 loc) · 3.87 KB
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "graphbox",
"version": "1.3.0",
"description": "Graph Sandbox + Graph Toolbox: Abstract and experimental graph algorithms for academic research",
"packageManager": "pnpm@10.27.0",
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"unpkg": "dist/index.umd.js",
"jsdelivr": "dist/index.umd.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"browser": "./dist/index.umd.js",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"bin": {
"graphbox": "./dist/cli.js"
},
"files": [
"dist"
],
"sideEffects": false,
"engines": {
"node": ">=18"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Mearman/GraphBox.git"
},
"bugs": {
"url": "https://github.com/Mearman/GraphBox/issues"
},
"homepage": "https://github.com/Mearman/GraphBox#readme",
"lint-staged": {
"*.{ts,tsx}": "eslint --fix",
"src/**/*.{ts,tsx}": "typecheck-files"
},
"scripts": {
"typecheck": "tsc --noEmit",
"lint": "eslint src --fix",
"test": "vitest run --coverage",
"test:coverage": "vitest run --coverage",
"test:mutation": "stryker run",
"test:quality": "pnpm run test:coverage && pnpm run test:mutation",
"test:exp": "NODE_OPTIONS=\"--max-old-space-size=8192\" npx tsx scripts/run-tap.ts",
"test:tap": "NODE_OPTIONS=\"--max-old-space-size=8192\" npx tsx scripts/run-tap.ts",
"test:metrics": "NODE_OPTIONS=\"--max-old-space-size=8192\" npx tsx scripts/run-tap.ts --metrics",
"gen:csv": "tsx scripts/export-csv.ts",
"update:thesis-tables": "pnpm test:metrics && pnpm gen:csv",
"parse-tap": "tsx scripts/parse-tap-results.ts test-results.tap",
"parse-tap:json": "tsx scripts/parse-tap-results.ts test-results.tap --format json --output tap-results.json",
"parse-tap:csv": "tsx scripts/parse-tap-results.ts test-results.tap --format csv --output tap-metrics.csv",
"build": "vite build && BUILD_TARGET=cli vite build",
"validate": "turbo run build",
"prepare": "husky"
},
"keywords": [
"graph",
"algorithms",
"expansion",
"generation",
"validation",
"graph-theory",
"academic-research",
"typescript"
],
"author": "Joe Mearman",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^20.3.1",
"@commitlint/config-conventional": "^20.3.1",
"@eslint-community/eslint-plugin-eslint-comments": "^4.6.0",
"@eslint/js": "^9.39.2",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@stryker-mutator/core": "9.4.0",
"@stryker-mutator/typescript-checker": "9.4.0",
"@stryker-mutator/vitest-runner": "9.4.0",
"@stylistic/eslint-plugin": "^5.7.0",
"@types/node": "^25.0.9",
"@vitest/coverage-v8": "^4.0.17",
"@vitest/eslint-plugin": "^1.6.6",
"conventional-changelog-conventionalcommits": "^9.1.0",
"eslint": "^9.39.2",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsdoc": "^62.0.0",
"eslint-plugin-n": "^17.23.2",
"eslint-plugin-no-only-tests": "^3.3.0",
"eslint-plugin-prefer-arrow-functions": "^3.9.1",
"eslint-plugin-promise": "^7.2.1",
"eslint-plugin-regexp": "^2.10.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-sonarjs": "^3.0.5",
"eslint-plugin-unicorn": "^62.0.0",
"eslint-plugin-unused-imports": "^4.3.0",
"fast-check": "4.5.3",
"globals": "^17.0.0",
"husky": "^9.1.7",
"jiti": "^2.6.1",
"lint-staged": "16.2.7",
"semantic-release": "^25.0.2",
"turbo": "^2.7.5",
"typecheck-files": "1.0.3",
"typescript": "5.9.3",
"typescript-eslint": "^8.53.0",
"vite": "7.3.1",
"vite-plugin-dts": "^4.5.4",
"vite-tsconfig-paths": "^6.0.4",
"vitest": "4.0.17"
},
"dependencies": {
"fflate": "^0.8.2",
"ppef": "1.2.0"
}
}