-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.25 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
{
"name": "@treasure-chess/chess-image-generator",
"version": "1.5.8",
"description": "Generate images based on various forms of chess notation.",
"main": "src/index.js",
"scripts": {
"lint": "eslint ./src",
"test": "babel-node ./test/main.test.js",
"test:watch": "nodemon --watch src --watch tests --ext \"js,ts,tsx\" --exec \"babel-node tests/main.test.js\""
},
"files": [
"src"
],
"repository": {
"type": "git",
"url": "git+https://github.com/treasure-chess/chess-image-generator"
},
"keywords": [
"Chess",
"GIF",
"PNG",
"JPG",
"Image"
],
"author": "Andrew Young, Joseph Schiarizzi, Patrick Gallagher",
"bugs": {
"url": "https://github.com/treasure-chess/chess-image-generator/issues"
},
"homepage": "https://github.com/treasure-chess/chess-image-generator",
"peerDependencies": {
"@napi-rs/canvas": "^0.1.19",
"canvas": "^2.9.0"
},
"dependencies": {
"chess.js": "^0.10.2"
},
"devDependencies": {
"@babel/core": "7.16.0",
"@babel/node": "^7.16.0",
"@napi-rs/canvas": "^0.1.19",
"canvas": "^2.9.0",
"eslint": "^7.10.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.25.3",
"lerna": "^4.0.0",
"path": "^0.12.7"
}
}