-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.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
{
"name": "herbdoku-validator",
"author": "The Herbdoku Authors (https://github.com/HvdW144/herbdoku-validator/graphs/contributors)",
"description": "A sudoku validator for advanced sudoku puzzles, inspired by crackingthecryptic",
"license": "MIT",
"version": "0.2.1",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsup",
"lint": "eslint \"{src,test}/**/*\" --fix",
"lint:nofix": "eslint",
"test": "jest",
"test:watch": "jest --watchAll",
"test:cov": "jest --coverage"
},
"directories": {
"test": "test"
},
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/HvdW144/herbdoku-validator.git"
},
"keywords": [
"sudoku",
"validator",
"sudoku-validator"
],
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@eslint/js": "^9.16.0",
"@types/jest": "^29.5.12",
"eslint": "^9.16.0",
"globals": "^15.12.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"tsup": "^8.0.2",
"typescript": "^5.4.5",
"typescript-eslint": "^8.16.0"
}
}