-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.03 KB
/
package.json
File metadata and controls
33 lines (33 loc) · 1.03 KB
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
{
"name": "chess-pgn-parser",
"version": "1.3.9",
"description": "PGN to JSON in seconds",
"main": "./dist/parser.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rimraf dist && rollup src/app.js --file dist/parser.js --format umd --name \"parser\" --banner \"/* @module Chess PGN Parser, @version 1.3.7, @copyright Aditya D.S. 2020, @license MIT */\" && terser dist/parser.js --compress --comments --mangle -o dist/parser.min.js --source-map \"filename=parser.min.map\""
},
"keywords": [
"Chess",
"PGN",
"JSON",
"Parser",
"PGN Parser"
],
"author": "Aditya D.S.",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"rimraf": "^3.0.2",
"rollup": "^2.33.2",
"terser": "^5.4.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Aditya-ds-1806/Chess-PGN-Parser.git"
},
"bugs": {
"url": "https://github.com/Aditya-ds-1806/Chess-PGN-Parser/issues"
},
"homepage": "https://aditya-ds-1806.github.io/Chess-PGN-Parser/#/"
}