-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
28 lines (28 loc) · 1.7 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
{
"name": "iflappybird-web",
"version": "1.0.0",
"description": "## 源码目录介绍 ``` ./js ├── base // 定义游戏开发基础类 │ ├── animatoin.js // 帧动画的简易实现 │ ├── pool.js // 对象池的简易实现 │ └── sprite.js // 游戏基本元素精灵类 ├── libs │ ├── symbol.js // ES6 Symbol简易兼容 │ └── weapp-adapter.js // 小游戏适配器 ├── npc │ └── enemy.js // 敌机类 ├── player │ ├── bullet.js // 子弹类 │ └── index.js // 玩家类 ├── runtime │ ├── background.js // 背景类 │ ├── gameinfo.js // 用于展示分数和结算界面 │ └── music.js // 全局音效管理器 ├── databus.js // 管控游戏状态 └── main.js // 游戏入口主函数",
"main": "index.html",
"dependencies": {
"webpack": "^4.16.4"
},
"devDependencies": {
"file-loader": "^4.1.0",
"gh-pages": "^2.0.1",
"webpack-cli": "^3.1.0"
},
"scripts": {
"build": "webpack",
"deploy": "gh-pages -d dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/WJ941/flappybirdweb.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/WJ941/flappybirdweb/issues"
},
"homepage": "https://github.com/WJ941/flappybirdweb#readme"
}