-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.06 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
{
"name": "Highchess",
"version": "0.1.0",
"description": "Chess made with Highcharts",
"main": "chess.js",
"scripts": {
"test": "eslint src/app.js",
"build": "npm run build:random-ai && npm run build:simple",
"build:random-ai": "browserify src/random-ai.js -t babelify > docs/source/assets/random-ai.js",
"build:simple": "browserify src/simple.js -t babelify > docs/source/assets/simple.js",
"watch:build": "watch \"npm run build\" src/"
},
"repository": {
"type": "git",
"url": "https://github.com/jon-a-nygaard/highchess"
},
"keywords": [
"chess",
"highcharts"
],
"author": "Jon Arild Nygård",
"license": "MIT",
"bugs": {
"url": "https://github.com/jon-a-nygaard/highchess/issues"
},
"homepage": "https://github.com/jon-a-nygaard/highchess",
"devDependencies": {
"babel-preset-env": "^1.3.2",
"babelify": "^7.3.0",
"browserify": "^10.2.6",
"eslint": "^3.19.0",
"uglify-js": "^2.8.21",
"watch": "^1.0.2"
},
"dependencies": {
"chess.js": "^0.9.1",
"highcharts": "^5.0.10"
}
}