-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "zerosum",
"version": "0.1.0",
"description": "Zerosum algorithms and examples.",
"main": "index.js",
"directories": {
"doc": "docs",
"test": "tests"
},
"scripts": {
"dev": "FLASK_APP=run.py flask run",
"build": "browserify -e app/src/main.js -o app/static/dist/bundle.js"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/rhgrant10/zerosum.git"
},
"keywords": [
"zerosum",
"tictactoe",
"chess",
"minimax",
"alpha",
"beta"
],
"author": "Robert Grant",
"license": "ISC",
"homepage": "https://bitbucket.org/rhgrant10/zerosum#readme",
"dependencies": {
"vue": "^2.4.2",
"vue-resource": "^1.3.4"
},
"devDependencies": {
"babel-core": "^6.25.0",
"babel-preset-es2015": "^6.24.1",
"babelify": "^7.3.0",
"browserify": "^14.4.0",
"vueify": "^9.4.1"
},
"browserify": {
"transform": [
[
"vueify"
],
[
"babelify",
{
"presets": [
"es2015"
]
}
]
]
}
}