-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
94 lines (94 loc) · 2.79 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "dungeonkit",
"version": "0.0.0",
"description": "A base for building Mystery Dungeon-style roguelike games.",
"contributors": [
"Matthew Savage <[email protected]> (https://bluepichu.com/)"
],
"license": "ISC",
"dependencies": {
"@types/clone": "^0.1.30",
"@types/express": "^4.0.33",
"@types/express-serve-static-core": "^4.0.39",
"@types/hammerjs": "^2.0.33",
"@types/keymaster": "^1.6.28",
"@types/mime": "0.0.29",
"@types/mocha": "^2.2.32",
"@types/nconf": "0.0.32",
"@types/node": "^6.0.46",
"@types/rewire": "^2.5.27",
"@types/serve-static": "^1.7.31",
"@types/shortid": "0.0.28",
"@types/socket.io": "^1.4.27",
"@types/socket.io-client": "^1.4.28",
"@types/source-map-support": "^0.2.28",
"@types/stats": "^0.16.30",
"@types/webfontloader": "^1.6.27",
"babel-preset-es2015": "^6.9.0",
"beautiful-log": "file:../beautiful-log",
"clone": "^1.0.2",
"express": "^4.13.4",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"gulp-bower": "0.0.13",
"gulp-concat": "^2.6.0",
"gulp-debug": "^2.1.2",
"gulp-ignore": "^2.0.1",
"gulp-intermediate": "^3.0.1",
"gulp-load-plugins": "^1.2.2",
"gulp-sourcemaps": "^1.6.0",
"gulp-typescript": "^3.0.2",
"gulp-uglify": "^1.5.3",
"gulp-util": "^3.0.7",
"howler": "^2.0.2",
"keymaster": "^1.6.2",
"merge-stream": "^1.0.0",
"mocha": "^2.5.3",
"nconf": "^0.8.4",
"nodeunit": "^0.9.1",
"pixi-multistyle-text": "^0.5.1",
"pixi-tilemap": "git+https://github.com/pixijs/pixi-tilemap.git",
"pixi.js": "^4.4.1",
"rewire": "^2.5.2",
"rollup": "^0.31.0",
"shortid": "^2.2.6",
"socket.io": "^1.4.5",
"sorcery": "^0.10.0",
"source-map-support": "^0.4.0",
"stats.js": "^0.17.0",
"typescript": "^2.0.6",
"webfontloader": "^1.6.27"
},
"devDependencies": {
"@types/debug": "0.0.29",
"@types/pixi.js": "^4.3.1",
"gulp": "^3.9.1",
"gulp-delete-lines": "0.0.7",
"gulp-imagemin": "^3.0.1",
"gulp-replace": "^0.5.4",
"gulp-rollup": "^2.5.1",
"gulp-spritesmith": "0.0.2",
"istanbul": "^0.4.3",
"node-notifier": "^4.6.1",
"remap-istanbul": "^0.6.4",
"spritesmith-texturepacker": "^1.0.0"
},
"scripts": {
"test": "cd build && mocha",
"cover": "cd build && istanbul cover _mocha && remap-istanbul -i coverage/coverage.json -t html -o coverage/report && open coverage/report/index.html"
},
"main": "index.js",
"directories": {
"doc": "doc",
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bluepichu/dungeonkit-temp.git"
},
"author": "",
"bugs": {
"url": "https://github.com/bluepichu/dungeonkit-temp/issues"
},
"homepage": "https://github.com/bluepichu/dungeonkit-temp#readme"
}