-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.57 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
41
42
43
44
45
46
47
{
"name": "RaccoonChessSigma",
"version": "0.1.0",
"description": "UCI Chess Engine, AI, and Library",
"main": "/lib/rcsigma/ui/api/api.ts",
"typings": "/lib/rcsigma/ui/api/api.d.ts",
"homepage": "https://rcsigma.org",
"bugs": "https://github.com/medegw01/RaccoonChessSigma/issues",
"keywords": [
"raccoon",
"chess",
"chess-ai",
"chess-library",
"chess-engine"
],
"repository": {
"type": "git",
"url": "https://github.com/medegw01/RaccoonChessSigma"
},
"devDependencies": {
"@types/jest": "^26.0.19",
"@types/node": "^14.14.14",
"@typescript-eslint/eslint-plugin": "^4.11.0",
"@typescript-eslint/parser": "^4.11.0",
"coveralls": "^3.1.0",
"eslint": "^7.16.0",
"eslint-plugin-sonarjs": "^0.5.0",
"jest": "^26.6.3",
"ts-jest": "^26.4.4",
"ts-loader": "^8.0.12",
"typescript": "^4.1.3",
"webpack": "^5.11.0",
"webpack-cli": "^4.2.0"
},
"scripts": {
"build:api": "webpack --entry ./rcsigma/ui/api/api.ts --output-path build --output-filename raccoon.api.js",
"build:uci": "webpack --entry ./rcsigma/ui/uci/entrypoint.ts --target node --output-path build --output-filename raccoon.uci.js",
"test-api": "jest -- ./tests/api.test.ts",
"test-uci": "jest -- ./tests/uci.test.ts",
"test-general": "jest -- ./tests/general.test.ts",
"coverage": "jest --coverage",
"lint-and-fix": "eslint \"*/**/*.{js,ts,tsx}\" --fix",
"lint": "eslint \"*/**/*.{js,ts,tsx}\""
},
"author": "Michael Edegware <[email protected]> (https://www.edegware.com/)",
"license": "MIT"
}