-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.3 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
56
57
58
59
{
"name": "diablogl",
"version": "0.2.0",
"description": "A re-implementation of Diablo 1 for the web.",
"private": true,
"keywords": [
"diablo",
"webgl",
"game",
"rpg"
],
"homepage": "https://github.com/doggan/diablogl",
"repository": {
"type": "git",
"url": "https://github.com/doggan/diablogl.git"
},
"bugs": {
"url": "https://github.com/doggan/diablogl/issues"
},
"author": {
"name": "Shyam Guthikonda",
"url": "http://shy.am"
},
"license": "MIT",
"scripts": {
"gulp": "gulp",
"lint": "gulp lint",
"build": "gulp browserify"
},
"dependencies": {
"gl-vec2": "^1.0.0",
"lodash.findindex": "^3.2.1",
"lodash.foreach": "^3.0.3",
"pathfinding": "^0.4.17",
"tmx-parser": "^1.4.0"
},
"devDependencies": {
"babelify": "^6.1.3",
"browser-sync": "^2.2.4",
"browserify": "^9.0.3",
"chai": "^1.10.0",
"gulp": "^3.8.11",
"gulp-jshint": "^1.11.2",
"gulp-notify": "^2.2.0",
"gulp-util": "^3.0.4",
"jshint-stylish": "^1.0.1",
"lodash.assign": "^3.2.0",
"lodash.omit": "^3.1.0",
"map-stream": "0.0.5",
"mocha": "^2.1.0",
"pretty-hrtime": "^1.0.0",
"require-dir": "^0.1.0",
"vinyl-source-stream": "^1.1.0",
"watchify": "^2.4.0"
},
"engines": {
"node": "4.2.x"
}
}