forked from lubert/chess.ts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 915 Bytes
/
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
{
"name": "chess.ts",
"version": "0.16.2",
"license": "BSD-2-Clause",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"homepage": "https://github.com/lubert/chess.ts",
"keywords": [
"chess"
],
"repository": {
"type": "git",
"url": "https://github.com/lubert/chess.ts.git"
},
"devDependencies": {
"@microsoft/api-documenter": "^7.8.21",
"@microsoft/api-extractor": "^7.9.1",
"@types/jest": "^26.0.3",
"@typescript-eslint/eslint-plugin": "^3.5.0",
"@typescript-eslint/parser": "^3.5.0",
"eslint": "^7.3.1",
"jest": "^26.1.0",
"ts-jest": "^26.1.1",
"typescript": "^3.9.6"
},
"scripts": {
"api": "npm run build && api-extractor run --local --verbose",
"build": "tsc",
"build:docs": "npm run api && api-documenter markdown --input ./temp --output ./docs",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"test": "jest"
}
}