-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
42 lines (42 loc) · 1000 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
36
37
38
39
40
41
42
{
"name": "node-chess",
"version": "1.3.1",
"description": "An isomorphic and fully customisable JavaScript chess engine",
"main": "src/index",
"scripts": {
"test": "mocha",
"start": "node src/index.js",
"build": "tsc && browserify src/index.js -o node-chess.js && browserify test/increments.js -o profile/increments.js"
},
"repository": {
"type": "git",
"url": "https://github.com/seikho/node-chess.git"
},
"keywords": [
"node",
"chess",
"calculate",
"validate",
"engine",
"analysis",
"variant",
"portal"
],
"author": "Carl Winkler",
"license": "MIT",
"bugs": {
"url": "https://github.com/seikho/node-chess/issues"
},
"homepage": "https://github.com/seikho/node-chess",
"devDependencies": {
"analysis": "^0.2.4",
"browserify": "^11.0.1",
"chai": "^2.1.2",
"mocha": "^2.2.1",
"typescript": "^1.9.0-dev.20160429"
},
"dependencies": {
"bluebird": "^2.9.34",
"pegjs": "^0.8.0"
}
}