generated from lengyanyu258/cchess.js
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
40 lines (40 loc) · 1.01 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
{
"name": "xiangqi.js",
"version": "0.5.2-dev",
"description": "A Javascript Chinese chess/cchess/Xiangqi library for xiangqi move generation/validation, piece placement/movement, and check/checkmate/draw detection",
"author": "lengyanyu258 <lengyanyu258@outlook.com> (https://github.com/lengyanyu258)",
"license": "BSD-2-Clause",
"homepage": "https://github.com/lengyanyu258/xiangqi.js",
"keywords": [
"xiangqi"
],
"main": "xiangqi.js",
"filename": "xiangqi.min.js",
"repository": {
"type": "git",
"url": "https://github.com/lengyanyu258/xiangqi.js.git"
},
"npmName": "xiangqi.js",
"npmFileMap": [
{
"basePath": "",
"files": [
"xiangqi*.js"
]
}
],
"devDependencies": {
"eslint": "latest",
"globals": "latest",
"jest": "latest",
"terser": "latest"
},
"scripts": {
"test": "jest --coverage",
"minify": "terser xiangqi.js -c -m --comments -o xiangqi.min.js"
},
"prettier": {
"printWidth": 120,
"singleQuote": true
}
}