This repository has been archived by the owner on Dec 11, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
53 lines (53 loc) · 1.75 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
{
"name": "gecko2d",
"version": "0.0.30",
"description": "A flexible and powerful Cross-Platform 2D Game Framework",
"main": "main.js",
"preferGlobal": true,
"bin": {
"gecko": "main.js"
},
"scripts": {
"update-kha": "git submodule foreach --recursive git pull origin master",
"dev": "webpack --config webpack.config.js --progress --colors --watch",
"build": "webpack --config webpack.config.js --progress --colors",
"api": "node scripts/api.js && cp -R ./build_templates/docs/build/pages ./docs/.vuepress/dist/api_docs",
"localdocs": "baseDir=false npm run docs",
"docs": "node scripts/examples.js && vuepress build docs && node scripts/examples.js --build && npm run api",
"ghpages": "npm run docs && cd docs/.vuepress/dist && git init && git add -A && git commit -m 'deploy pages' && git push -f [email protected]:nazariglez/Gecko2D.git master:gh-pages && npm run localdocs",
"postinstall": "node scripts/khamake.js && node scripts/koremake.js"
},
"repository": {
"type": "git",
"url": "https://github.com/Nazariglez/Gecko2D.git"
},
"engines": {
"node": ">=9.0.0"
},
"author": "Nazariglez",
"license": "MIT",
"bugs": {
"url": "https://github.com/Nazariglez/Gecko2D/issues"
},
"homepage": "https://github.com/Nazariglez/Gecko2D",
"devDependencies": {
"@types/colors": "^1.1.3",
"@types/node": "^8.0.46",
"replace": "^0.3.0",
"ts-loader": "^2.3.7",
"typescript": "^2.5.3",
"webpack": "^3.6.0"
},
"dependencies": {
"async": "^2.5.0",
"colors": "^1.1.2",
"cross-spawn": "^6.0.5",
"fs-extra": "^4.0.2",
"is-url": "^1.2.2",
"js-yaml": "^3.11.0",
"node-static": "^0.7.10",
"node-watch": "^0.5.5",
"toml": "^2.3.3",
"uglify-js": "^3.1.5"
}
}