-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 879 Bytes
/
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
{
"name": "chess-functions",
"version": "0.16.8",
"description": "A brand new chess moves validator/generator",
"author": "Domingo E. Savoretti <esavoretti@gmail.com>",
"repository": "https://github.com/sandy98/chess-functions",
"homepage": "https://github.com/sandy98/chess-functions#readme",
"main": "dist/chess-rules.min.js",
"browser": "dist/chess-rules.min.js",
"esm": "dist/chess-rules.esm.js",
"filename": "dist/chess-rules.min.js",
"files": [
"dist/"
],
"keywords": [
"chess",
"chess-rules",
"move-validator",
"chess.js",
"pgn-reader"
],
"license": "MIT",
"scripts": {
"build": "scripts/build",
"clean": "rm -r dist/* && rm test/chess-functions.js"
},
"devDependencies": {
"rollup": "^1.26.0",
"rollup-plugin-buble": "latest",
"rollup-plugin-json": "latest",
"uglify-js": "^3.6.4"
}
}