forked from jhlywa/chess.js
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
35 lines (35 loc) · 908 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
34
35
{
"name": "chess.js",
"version": "0.10.2",
"description": "A Javascript chess library for chess move generation/validation, piece placement/movement, and check/checkmate/draw detection",
"author": "Jeff Hlywa <[email protected]> (https://github.com/jhlywa)",
"license": "BSD-2-Clause",
"homepage": "https://github.com/jhlywa/chess.js",
"keywords": [
"chess"
],
"main": "chess.js",
"filename": "chess.min.js",
"repository": {
"type": "git",
"url": "https://github.com/jhlywa/chess.js.git"
},
"npmName": "chess.js",
"npmFileMap": [
{
"basePath": "",
"files": [
"chess*.js"
]
}
],
"devDependencies": {
"mocha": "2.2.4",
"chai": "2.3.0",
"uglify-js": "2.4.21"
},
"scripts": {
"test": "./node_modules/.bin/mocha",
"minify": "./node_modules/.bin/uglifyjs chess.js -c -m --comments 'license' > chess.min.js"
}
}