forked from brozeph/node-chess
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
25 lines (25 loc) · 954 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
{
"name" : "chess",
"description" : "An algebraic notation driven chess engine that can validate board position and produce a list of viable moves (notated).",
"version" : "0.1.8",
"author" : "Joshua Thomas <[email protected]>",
"engine" : "node >= 0.8.1",
"repository" : {
"type" : "git",
"url" : "http://github.com/brozeph/node-chess.git" },
"keywords" : ["chess", "algebraic notation"],
"main" : "./lib/main.js",
"scripts" : {
"pretest" : "jshint ./lib/*.js ; rm -rf lib-cov ; jscoverage lib lib-cov",
"test" : "./node_modules/.bin/mocha --check-leaks -R spec -r ./test/common.js ./test/lib",
"posttest" : "NODE_CHESS_COVERAGE=true ./node_modules/.bin/mocha --check-leaks -R mocha-lcov-reporter -r ./test/common.js ./test/lib | ./node_modules/coveralls/bin/coveralls.js"
},
"devDependencies" : {
"chai" : "*",
"coveralls" : "*",
"jscoverage" : "*",
"jshint" : "*",
"mocha" : "*",
"mocha-lcov-reporter" : "*"
}
}