-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.21 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
{
"name": "hexxi",
"version": "0.1.0",
"description": "A HTML5 engine for creating hex based games",
"main": "src/index",
"license": "MIT",
"author": "Gwilym Humphreys (https://github.com/gwilymhumphreys)",
"repository": {
"type": "git",
"url": "https://github.com/gwilymhumphreys/hexxi.git"
},
"keywords": [
"html5",
"game",
"engine",
"hex",
"tiles",
"wooOOoooOOo"
],
"engines": {
"node": "*"
},
"scripts": {
"test": "npm run build; NODE_ENV=test mocha test/suite.coffee --compilers coffee:coffee-script --reporter spec --timeout 10000",
"build": "coffee -o lib -c src",
"watch": "coffee -o lib -w src",
"clean": "rm -rf lib/*"
},
"devDependencies": {
"coffee-script": "*",
"mocha": "*",
"gulp": "3.6.x",
"gulp-coffee": "1.2.x",
"gulp-compile-js": "0.0.x",
"gulp-concat": "2.1.x",
"gulp-livereload": "0.3.x",
"gulp-module-system": "git://github.com/gwilymhumphreys/gulp-module-system.git",
"gulp-util": "2.2.x"
},
"dependencies": {
"inflection": "1.2.x",
"lodash": "^3.9.3",
"moment": "2.0.x",
"pixi.js": "^3.0.6",
"queue-async": "^1.0.7",
"tween.js": "^0.14.0",
"underscore": "1.5.x"
}
}