-
Notifications
You must be signed in to change notification settings - Fork 241
/
package.json
51 lines (51 loc) · 1.01 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
{
"name": "stage-js",
"version": "0.9.5",
"description": "2D HTML5 Rendering and Layout",
"homepage": "http://piqnt.com/stage.js/",
"author": "Ali Shakiba (http://shakiba.me/stage.js)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/shakiba/stage.js.git"
},
"keywords": [
"html5",
"game",
"rendering",
"layout",
"engine",
"2d",
"canvas",
"cross-platform",
"web",
"mobile"
],
"main": "lib/index.js",
"files": [
"dist/",
"doc/",
"ext/",
"lib/",
"platform/",
"test/"
],
"devDependencies": {
"expect.js": "*",
"express": "^4.17.1",
"mocha": "^6.2.3",
"nodemon": "^1.19.1",
"sandboxed-module": "^2.0.0",
"serve-index": "^1.9.1",
"sinon": "^9.0.2",
"webpack": "^4.33.0",
"webpack-cli": "^3.3.3",
"webpack-dev-middleware": "^3.7.0"
},
"scripts": {
"test": "mocha test/*.js",
"build": "webpack -p",
"watch": "webpack --watch",
"dev": "nodemon server.js"
}
}