forked from jysperm/WizardChess
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 912 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
{
"name": "wizard-chess",
"version": "0.1.0",
"license": "MIT",
"description": "Visible AI of International Chess",
"homepage": "https://github.com/jysperm/WizardChess",
"repository": {
"type": "git",
"url": "https://github.com/jysperm/WizardChess.git"
},
"contributors": [
{
"name": "jysperm",
"email": "[email protected]",
"url": "https://jysperm.me"
}
],
"scripts": {
"compile": "tsc && browserify ui/*.js lib/*.js -o public/bundled.js",
"prepublish": "typings install && npm run compile",
"start": "http-server",
"test": "npm run compile && mocha"
},
"devDependencies": {
"browserify": "13.0.0",
"lodash": "4.11.1",
"mocha": "2.4.5",
"power-assert": "1.4.0",
"react": "15.0.2",
"react-dom": "15.0.2",
"typescript": "1.8.10",
"typings": "1.0.4"
},
"dependencies": {
"http-server": "0.9.0"
}
}