-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.69 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
{
"name": "pathfindr",
"version": "1.2.0",
"description": "Advanced pathfinding library",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "jest --config ./config/jest.config.js",
"test:coverage": "jest --config ./config/jest.config.js --coverage",
"benchmark": "ts-node benchmarks/performance.ts",
"lint": "eslint \"src/**/*.ts\" \"tests/**/*.ts\" \"benchmarks/**/*.ts\" \"examples/**/*.ts\"",
"format": "prettier --write \"*.{json,js,ts,mjs}\" \"src/**/*.ts\" \"tests/**/*.ts\" \"config/**/*.{js,json}\" \".github/**/*.yml\" \"benchmarks/**/*.ts\" \"examples/**/*.ts\" \"scripts/**/*.{js,ts}\"",
"format:check": "prettier --check \"*.{json,js,ts}\" \"src/**/*.ts\" \"tests/**/*.ts\" \"config/**/*.{js,json}\" \".github/**/*.yml\" \"benchmarks/**/*.ts\" \"examples/**/*.ts\" \"scripts/**/*.{js,ts}\"",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint && npm run build"
},
"keywords": [
"pathfinding",
"graph",
"algorithms"
],
"author": "Ojochogwu",
"license": "MIT",
"devDependencies": {
"@eslint/js": "^9.19.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.12.0",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"eslint": "^8.57.1",
"globals": "^15.14.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"lint-staged": "^15.4.3",
"prettier": "^3.4.2",
"prettier-plugin-organize-imports": "^4.1.0",
"ts-jest": "^29.2.5",
"typescript": "^5.7.3",
"typescript-eslint": "^8.22.0"
},
"lint-staged": {
"*.ts": [
"eslint",
"prettier --write"
],
"*.js": [
"prettier --write"
]
},
"files": [
"dist/**/*"
],
"publishConfig": {
"access": "public"
}
}