-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.15 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
{
"name": "tzaar",
"version": "2.0.0",
"description": "Play against TZAAR AI. Designed by Kris Burm.",
"keywords": ["TZAAR", "game", "AI"],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"scripts": {
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"build": "tsc",
"prepublishOnly": "npx git-branch-is -r release* && npm run lint && npm test",
"preversion": "npx git-branch-is -r release* && npm run lint",
"version": "npm run build:docs && git add docs",
"postversion": "git push && git push --tags"
},
"author": "anthony-nardi",
"license": "ISC",
"devDependencies": {
"@types/jest": "^29.2.5",
"@typescript-eslint/eslint-plugin": "^5.48.1",
"@typescript-eslint/parser": "^5.48.1",
"benchmark": "^2.1.4",
"benny": "^3.7.1",
"eslint": "^8.31.0",
"git-branch-is": "^4.0.0",
"immutable": "^4.2.1",
"jest": "^29.3.1",
"minimaxer": "3.2.3",
"prettier": "^2.8.2",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typedoc": "^0.23.24",
"typedoc-theme-hierarchy": "^3.0.2",
"typescript": "^4.9.4"
},
"files": [
"dist/**/*"
]
}