forked from jhlywa/chess.js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 752 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 752 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
{
"name": "chess.js",
"version": "1.0.0-alpha.0",
"license": "BSD-2-Clause",
"main": "dist/chess.js",
"dist": "dist/chess.d.ts",
"homepage": "https://github.com/jhlywa/chess.js",
"author": "Jeff Hlywa <jhlywa@gmail.com>",
"scripts": {
"test": "jest",
"lint": "eslint src/ --ext .ts",
"build": "tsc --build",
"clean": "tsc --build --clean"
},
"repository": {
"type": "git",
"url": "https://github.com/jhlywa/chess.js"
},
"devDependencies": {
"@types/jest": "^27.4.1",
"@typescript-eslint/eslint-plugin": "^5.17.0",
"@typescript-eslint/parser": "^5.17.0",
"eslint": "^8.12.0",
"jest": "^27.0.6",
"jest-extended": "^2.0.0",
"ts-jest": "^27.0.4",
"typescript": "^4.6.3"
}
}