-
Notifications
You must be signed in to change notification settings - Fork 863
/
package.json
104 lines (104 loc) · 2.5 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
95
96
97
98
99
100
101
102
103
104
{
"name": "hilojs",
"version": "2.0.3",
"description": "Hilo Game Framework",
"author": "Hilo Dev Team",
"license": "MIT",
"main": "hilo-standalone.js",
"typings": "hilo.d.ts",
"repository": {
"type": "git",
"url": "[email protected]:hiloteam/hilo.git"
},
"scripts": {
"test": "rm -rf reports/screenshots && gulp test:reporter",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -w -r 0",
"contributor": "git-contributor",
"release": "gulp",
"npm": "gulp npm"
},
"devDependencies": {
"conventional-changelog-cli": "^1.3.3",
"del": "^1.2.0",
"git-contributor": "^1.0.7",
"gulp": "^3.9.0",
"gulp-concat": "^2.6.0",
"gulp-footer": "^1.0.5",
"gulp-header": "^1.2.2",
"gulp-if": "^1.2.5",
"gulp-jshint": "^2.1.0",
"gulp-rename": "^1.2.2",
"gulp-replace": "~0.5.4",
"gulp-shell": "^0.4.2",
"gulp-transform-module": "~2.1.1",
"gulp-uglify": "^1.2.0",
"gulp-uitest": "^1.0.1",
"gulp-zip": "^3.0.2",
"jshint": "^2.10.2",
"macaca-reporter": "^1.2.17",
"merge-stream": "^0.1.8",
"mocha": "=3.0.2",
"pixelmatch": "^4.0.2",
"should": "^8.0.2",
"through2": "^2.0.0",
"uitest": "^2.0.1"
},
"sources": {
"dir": "src",
"files": [
"util/browser.js",
"util/util.js",
"core/Hilo.js",
"core/Class.js",
"geom/Matrix.js",
"event/EventMixin.js",
"view/Drawable.js",
"renderer/Renderer.js",
"renderer/CanvasRenderer.js",
"renderer/DOMRenderer.js",
"renderer/WebGLRenderer.js",
"view/View.js",
"view/CacheMixin.js",
"view/Container.js",
"view/Stage.js",
"view/Bitmap.js",
"view/Sprite.js",
"view/DOMElement.js",
"view/Graphics.js",
"view/Text.js",
"view/BitmapText.js",
"view/Button.js",
"util/TextureAtlas.js",
"util/Ticker.js",
"util/polyfill.js",
"util/drag.js",
"tween/Tween.js",
"tween/Ease.js",
"loader/ImageLoader.js",
"loader/ScriptLoader.js",
"loader/LoadQueue.js",
"media/HTMLAudio.js",
"media/WebAudio.js",
"media/WebSound.js",
"game/Camera.js",
"game/Camera3d.js",
"game/ParticleSystem.js"
]
},
"extensions": {
"physics": {
"dir": "physics/",
"files": [
"chipmunk.js",
"physics.js"
]
},
"dragonbones": {
"dir": "dragonbones/src/",
"files": [
"dragonbones.js",
"hiloFactory.js"
]
}
}
}