-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
48 lines (48 loc) · 1.25 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
{
"name": "sudoku-gen",
"version": "1.0.2",
"description": "Sudoku puzzle generator",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*"
],
"scripts": {
"build": "rimraf dist && tsc",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "eslint ./src --ext .js,.ts",
"prepare": "npm run build",
"test": "jest",
"test:watch": "jest --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/petewritescode/sudoku-gen.git"
},
"keywords": [
"sudoku",
"generator",
"typescript"
],
"author": "Pete Williams <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/petewritescode/sudoku-gen/issues"
},
"homepage": "https://github.com/petewritescode/sudoku-gen#readme",
"devDependencies": {
"@types/jest": "^27.0.2",
"@types/seedrandom": "^3.0.1",
"@typescript-eslint/eslint-plugin": "^5.2.0",
"@typescript-eslint/parser": "^5.2.0",
"eslint": "^8.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.3.1",
"prettier": "^2.4.1",
"rimraf": "^3.0.2",
"seedrandom": "^3.0.5",
"ts-jest": "^27.0.7",
"typescript": "^4.4.4"
}
}