-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
39 lines (39 loc) · 1.16 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
{
"name": "tafl",
"version": "2.5.0",
"description": "A Typescript library for Hnefatafl (Viking Chess, or Tafl) that is used for move generation/validation, piece placement/movement, and game over detection. You can use it to simulate games between AI agents - written for this purpose, and also serves as the backbone of Litafl.com (a website where you can match with other Hnefatafl players online).",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"devDependencies": {
"@types/jest": "^26.0.24",
"@types/node": "^14.18.21",
"cz-conventional-changelog": "^3.3.0",
"jest": "^26.6.3",
"standard-version": "^9.0.0",
"ts-jest": "^26.4.4",
"typescript": "^4.0.5"
},
"scripts": {
"prepack": "tsc",
"release": "standard-version",
"test": "jest"
},
"repository": {
"type": "git",
"url": "https://github.com/demircancelebi/tafl.git"
},
"keywords": [
"hnefatafl",
"tafl",
"viking chess",
"tablut",
"tawlbwrdd"
],
"author": "Demircan Celebi <demircancelebi@gmail.com>",
"license": "MIT",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}