-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 803 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 803 Bytes
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
{
"dependencies": {
"@algorithm.ts/sudoku": "^1.0.23",
"sudoku-master": "^0.0.3"
},
"description": "Toolkit for generating, solving, rating and mining sudoku puzzles",
"devDependencies": {
"@types/jest": "^27.4.0",
"@types/node": "^14.14.14",
"@types/ramda": "^0.27.34",
"jest": "^27.4.7",
"ts-jest": "^27.1.3",
"typescript": "^4.1.3"
},
"files": [
"dist/src/**/*"
],
"license": "ISC",
"main": "dist/src/index.js",
"name": "@jimbali/sudoku-solver",
"repository": {
"type": "git",
"url": "https://github.com/jimbali/sudoku-solver"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc",
"prepare": "yarn run build && yarn test",
"test": "jest"
},
"typings": "dist/src",
"version": "0.1.1"
}