-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
45 lines (45 loc) · 1.04 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
{
"name": "bchess",
"version": "1.0.8",
"description": "Yet another chess engine.",
"main": "dist/bchess.js",
"dependencies": {},
"devDependencies": {
"codecov": "^3.1.0",
"mocha": "^5.2.0",
"nyc": "^13.1.0",
"gulp": "^4.0.0",
"gulp-rename": "^1.4.0",
"gulp-uglify-es": "^1.0.4"
},
"scripts": {
"start": "node server.js",
"test": "nyc mocha --timeout 10000 --exit",
"report-coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"build": "gulp uglify && gulp copy",
"debug": "node --nolazy --inspect-brk=9229 debug.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/blairjordan/bchess.git"
},
"keywords": [
"chess",
"board",
"game",
"engine"
],
"author": "B. Jordan",
"license": "MIT",
"bugs": {
"url": "https://github.com/blairjordan/bchess/issues"
},
"homepage": "https://github.com/blairjordan/bchess#readme",
"nyc": {
"check-coverage": true,
"reporter": [
"lcov",
"text-summary"
]
}
}