-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 889 Bytes
/
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
{
"devDependencies": {
"@types/jest": "^28.1.7",
"@types/node": "^18.0.3",
"jest": "^28.1.3",
"prettier": "^2.7.1",
"shx": "^0.3.4",
"ts-jest": "^28.0.8",
"typescript": "^4.7.4"
},
"name": "@pauldekoning/sudoku",
"version": "2.0.0",
"main": "dist/index.js",
"scripts": {
"build": "shx rm -rf dist && tsc",
"start": "npm run build && node dist/index.js",
"dev": "npx nodemon",
"prepublish": "npm run build",
"test": "jest"
},
"repository": "https://github.com/PauldeKoning/sudoku.git",
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/PauldeKoning/sudoku/issues"
},
"homepage": "https://github.com/PauldeKoning/sudoku#readme",
"description": "",
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node"
}
}