-
Notifications
You must be signed in to change notification settings - Fork 892
/
package.json
35 lines (35 loc) · 1.04 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
{
"name": "chess.js",
"version": "1.0.0-beta.8",
"license": "BSD-2-Clause",
"main": "dist/cjs/chess.js",
"module": "dist/esm/chess.js",
"types": "dist/types/chess.d.ts",
"homepage": "https://github.com/jhlywa/chess.js",
"author": "Jeff Hlywa <[email protected]>",
"scripts": {
"prepare": "npm run build",
"build": "tsc -b ./tsconfig.cjs.json ./tsconfig.esm.json ./tsconfig.types.json",
"check": "npm run format:check && npm run lint && npm run test && npm run build",
"clean": "rm -rf ./dist",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint src/ --ext .ts",
"test": "jest"
},
"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",
"prettier": "^3.1.0",
"ts-jest": "^27.0.4",
"typescript": "^4.6.3"
}
}