-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
34 lines (34 loc) · 956 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
{
"name": "mtgengine",
"version": "0.1.0",
"description": "An attempt at building a fully accurate simulation of the rules of Magic: The Gathering.",
"author": "Filip Haglund",
"license": "ISC",
"scripts": {
"test": "mocha",
"play": "node src/cmdlineGame.js",
"build-simplefrontend-cards": "gulp sets",
"build-simplefrontend": "browserify ./src/simplefrontend/index.js --outfile ./src/simplefrontend/js/bundle.js"
},
"repository": {
"type": "git",
"url": "git://github.com/fiso/mtgengine.git"
},
"dependencies": {
"cross-fetch": "^2.2.2"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.2.6",
"babel-preset-env": "^1.7.0",
"browserify": "^16.2.2",
"eslint": "^5.3.0",
"eslint-config-google": "^0.9.1",
"glob": "^7.1.2",
"gulp": "^3.9.1",
"gulp-buffer": "0.0.2",
"gulp-sourcemaps": "^2.6.4",
"gulp-tap": "^1.0.1",
"mocha": "^5.2.0"
}
}