-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.06 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
{
"name": "SG2D",
"version": "1.0.0",
"description": "2D graphics engine based on PixiJS and MatterJS, optimized for large maps through matrix tile clustering",
"main": "./src/sg2d.js",
"repository": {
"type": "git",
"url": "https://github.com/VediX/sg2d.github.io.git"
},
"author": "SG2D <sg2d@yandex.ru> (http://sg2d.ru/)",
"license": "MIT",
"homepage": "https://sg2d.ru",
"keywords": [
"sg2d",
"2D graphic",
"game engine",
"pixijs",
"matterjs",
"html5",
"javascript",
"es6"
],
"files": [
"src"
],
"type": "module",
"devDependencies": {
"nodemon": "^2.0.12",
"webpack": "^4.46.0",
"webpack-cli": "^4.7.2"
},
"scripts": {
"build": "webpack --mode=production & webpack --mode=production --env MINIMIZE=true",
"jsdocs": "jsdoc src/ README.md src/libs/sg-model/ src/plugins/ -d docs -c jsdoc.json",
"jsdocs_nm": "nodemon --watch src/** --watch README.md --delay 100ms --exec \"npm run jsdocs\"",
"doc_": "documentation build test/** -f html -o docs --theme docjs-theme",
"doc_nm_": "nodemon --watch test --exec \"npm run doc\""
}
}