-
-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathpackage.json
66 lines (66 loc) · 1.61 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
{
"name": "chess",
"description": "An algebraic notation driven chess engine that can validate board position and produce a list of viable moves (notated).",
"version": "1.2.2",
"contributors": [
{
"name": "Joshua Thomas",
"email": "[email protected]",
"url": "https://github.com/brozeph"
},
{
"name": "Denis Efremov",
"url": "https://github.com/Piterden"
},
{
"name": "Fun Planet",
"url": "https://github.com/dipamsen"
},
{
"name": "Lee Danilek",
"url": "https://githb.com/ldanilek"
},
{
"name": "Ayush Thakur",
"url": "https://githb.com/ayshthkr"
}
],
"exports": {
"import": {
"types": "./@types/chess/chess.d.ts",
"default": "./src/main.js"
}
},
"type": "module",
"engine": "node >= 16.0",
"repository": {
"type": "git",
"url": "https://github.com/brozeph/node-chess.git"
},
"license": "MIT",
"homepage": "https://brozeph.github.io/node-chess",
"bugs": "https://github.com/brozeph/node-chess/issues",
"keywords": [
"chess",
"algebraic notation"
],
"main": "./src/main.js",
"types": "@types/chess/chess.d.ts",
"scripts": {
"lint": "npx eslint ./src/** ./test/**",
"posttest": "c8 report --reporter=text-lcov > ./coverage/lcov.info",
"pretest": "npx eslint ./src/** ./test/**",
"test": "c8 mocha ./test/src",
"test:unit": "mocha ./test/src"
},
"dependencies": {
"crypto-js": "^4.2.0"
},
"devDependencies": {
"c8": "^10.1.2",
"chai": "^5.1.1",
"coveralls": "^3.1.1",
"eslint": "^9.5.0",
"mocha": "^10.4.0"
}
}