-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.34 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 2.34 KB
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "@br42/hc-engine",
"version": "0.1.8",
"description": "HexCheckers game engine",
"type": "module",
"types": "dist/index.d.ts",
"main": "dist/index.js",
"files": [
"dist/**/*.js",
"dist/index.d.ts"
],
"engines": {
"node": ">= 18.8"
},
"devDependencies": {
"@types/jest": "~29.2",
"@types/node": "~18",
"@typescript-eslint/eslint-plugin": "~5.44",
"@typescript-eslint/parser": "~5.44",
"browserify": "^17.0.0",
"eslint": "~8.28",
"eslint-config-prettier": "~8.5",
"eslint-plugin-jest": "~27.1",
"esmify": "^2.1.1",
"jest": "~29.3",
"prettier": "~2.8",
"rimraf": "~3.0",
"rollup": "^3.20.6",
"ts-jest": "~29.0",
"tsutils": "~3.21",
"typescript": "~5.0"
},
"dependencies": {
"tslib": "~2.4"
},
"scripts": {
"clean": "rimraf coverage build bundle dist tmp",
"prebuild": "npm run lint",
"build": "export TS_JEST_DISABLE_VER_CHECKER=true && tsc -p tsconfig.json",
"build:watch": "export TS_JEST_DISABLE_VER_CHECKER=true && tsc -w -p tsconfig.json",
"build:release": "export TS_JEST_DISABLE_VER_CHECKER=true && npm run clean && tsc -p tsconfig.release.json",
"build:bundle": "rollup dist/src/Ai.js --file bundle/bundle.js --format umd --name \"HexCheckersEngine\"",
"lint": "export TS_JEST_DISABLE_VER_CHECKER=true && npm run clean && eslint . --ext .ts --ext .mts",
"test": "export TS_JEST_DISABLE_VER_CHECKER=true && jest",
"coverage": "export TS_JEST_DISABLE_VER_CHECKER=true && jest --coverage",
"publish": "npm run build:release && npm publish --access public",
"prettier": "prettier --config .prettierrc --write .",
"test:watch": "export TS_JEST_DISABLE_VER_CHECKER=true && jest --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hexcheckers/engine-ts.git"
},
"keywords": [
"HexCheckers",
"Hexagonal",
"Checkers",
"Checkers",
"Game"
],
"author": "Alexander Belousov <brevis.ua@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/hexcheckers/engine-ts/issues"
},
"homepage": "https://github.com/hexcheckers/engine-ts#readme"
}