forked from online-go/goban
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.79 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "goban",
"version": "0.7.6",
"description": "",
"main": "lib/goban.js",
"types": "lib/goban.d.ts",
"files": [
"lib/",
"node/",
"src/"
],
"keywords": [
"go",
"baduk",
"igo",
"weiqi",
"online-go",
"ogs",
"goban"
],
"scripts": {
"dev": "webpack-cli serve",
"build-debug": "webpack",
"build-production": "webpack --mode production",
"lint": "eslint src/ --ext=.ts,.tsx",
"lint:fix": "eslint --fix src/ --ext=.ts,.tsx",
"typedoc": "typedoc src/goban.ts",
"typedoc:watch": "typedoc --watch src/goban.ts",
"prettier": "prettier --write \"src/**/*.{ts,tsx}\"",
"prettier:check": "prettier --check \"src/**/*.{ts,tsx}\"",
"checks": "npm run lint && npm run prettier:check",
"test": "jest",
"test-coverage-summary": "jest --coverage --coverageReporters=text-summary"
},
"repository": {
"type": "git",
"url": "git+https://github.com/online-go/goban.git"
},
"author": "Akita Noek <[email protected]> (https://online-go.com/)",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/online-go/goban/issues"
},
"homepage": "https://github.com/online-go/goban#readme",
"devDependencies": {
"@types/jest": "^29.5.0",
"@types/node": "^18.11.15",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@typescript-eslint/eslint-plugin": "^5.56.0",
"@typescript-eslint/eslint-plugin-tslint": "^5.56.0",
"@typescript-eslint/parser": "^5.56.0",
"bufferutil": "^4.0.7",
"canvas": "^2.10.2",
"eslint": "^8.29.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jsdoc": "^39.6.4",
"eslint-plugin-prettier": "^4.2.1",
"fork-ts-checker-webpack-plugin": "^6.3.4",
"husky": "^8.0.1",
"jest": "^29.5.0",
"jest-environment-jsdom": "^28.1.3",
"jest-transform-stub": "^2.0.0",
"jest-websocket-mock": "^2.4.0",
"lint-staged": "^12.1.7",
"prettier": "^2.6.2",
"prettier-eslint": "^15.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"svg-inline-loader": "0.8.2",
"thread-loader": "^3.0.4",
"ts-jest": "^29.0.5",
"ts-loader": "^9.4.2",
"ts-node": "^10.9.1",
"tslint": "^6.1.3",
"typedoc": "^0.23.28",
"typescript": "^5.0.2",
"utf-8-validate": "^6.0.3",
"webpack": "^5.76.3",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.13.1"
},
"dependencies": {
"eventemitter3": "^5.0.0"
},
"lint-staged": {
"src/**/*.{ts,tsx}": [
"eslint"
]
}
}