-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
71 lines (71 loc) · 2.31 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
{
"name": "kokopu",
"version": "4.9.2",
"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",
".eslintrc.yml",
".nycrc.yml",
"CHANGELOG.md",
"LICENSE",
"README.md",
"tsconfig.json",
"typedoc.json"
],
"devDependencies": {
"@knodes/typedoc-plugin-pages": "^0.23.4",
"@typescript-eslint/eslint-plugin": "^7.1.1",
"@typescript-eslint/parser": "^7.1.1",
"archiver": "^7.0.0",
"browserify": "^17.0.0",
"commander": "^12.0.0",
"eslint": "^8.57.0",
"mocha": "^10.3.0",
"nyc": "^15.1.0",
"rimraf": "^5.0.5",
"ssh2-sftp-client": "^10.0.3",
"tsify": "^5.0.4",
"typedoc": "0.23.28",
"typedoc-plugin-extras": "2.3.2",
"typescript": "5.0.4",
"uglify-js": "^3.17.4",
"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"
}
}