-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
72 lines (72 loc) · 2.32 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
{
"name": "kokopu",
"version": "4.11.3",
"description": "A JavaScript/TypeScript library implementing the chess game rules and providing tools to read/write the standard chess file formats.",
"keywords": [
"chess",
"fen",
"pgn",
"uci",
"games"
],
"homepage": "https://www.npmjs.com/package/kokopu",
"bugs": "https://github.com/yo35/kokopu/issues",
"repository": "github:yo35/kokopu",
"license": "LGPL-3.0-or-later",
"author": "Yoann Le Montagner <[email protected]>",
"contributors": [
"Atin Malaviya <[email protected]>",
"Maksym Butsykin <[email protected]>",
"Vladimir Mandic <[email protected]>"
],
"funding": "https://www.paypal.com/donate?hosted_button_id=MP795VF4FXUDW",
"main": "dist/lib/index.js",
"files": [
"demo",
"dist/lib",
"doc_src",
"scripts/build-archive.js",
"src",
"test",
".nycrc.yml",
"CHANGELOG.md",
"eslint.config.mjs",
"LICENSE",
"README.md",
"tsconfig.json",
"typedoc.config.js"
],
"devDependencies": {
"@eslint/js": "^9.17.0",
"@stylistic/eslint-plugin": "^2.12.1",
"archiver": "^7.0.1",
"browserify": "^17.0.1",
"commander": "^13.0.0",
"eslint": "^9.17.0",
"globals": "^15.14.0",
"mocha": "^11.0.1",
"nyc": "^17.1.0",
"rimraf": "^6.0.1",
"ssh2-sftp-client": "^11.0.0",
"tsify": "^5.0.4",
"typedoc": "^0.26.11",
"typedoc-plugin-extras": "^3.1.0",
"typescript": "~5.6.3",
"typescript-eslint": "^8.19.0",
"uglify-js": "^3.19.3",
"unit.js": "^2.1.1"
},
"scripts": {
"lint": "eslint demo src test",
"preunit": "npm run build:lib",
"unit": "nyc mocha --enable-source-maps --bail --sort",
"test": "npm run lint && npm run unit",
"build": "npm run build:lib && npm run build:doc && node scripts/build-archive.js",
"build:doc": "typedoc",
"build:lib": "rimraf dist/lib && tsc --outDir dist/lib",
"start": "typedoc --watch --preserveWatchOutput",
"clean": "rimraf build dist",
"predeploy": "npm run test && npm run build",
"deploy": "npm publish && node scripts/deploy.js"
}
}