-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json.template
35 lines (35 loc) · 958 Bytes
/
package.json.template
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
{
"name": "eccentric-engine",
"version": "##VERSION",
"description": "A simple engine for Javascript games",
"main": "Engine.js",
"dependencies": {
"webpack": "^4.41.0",
"uuid": "^3.3.3",
"webpack-cli": "^3.3.9"
},
"devDependencies": {
"clean-webpack-plugin": "^3.0.0",
"html-webpack-plugin": "^3.2.0",
"webpack-merge": "^4.2.2"
},
"scripts": {
"test": "echo \"No tests specified\"",
"build-dev": "webpack --config webpack.dev.js",
"build-prod": "webpack --config webpack.prod.js"
},
"files": [
"Engine.js",
"Engine.js.map"
],
"repository": {
"type": "git",
"url": "git+https://github.com/JustinPinner/EccentricEngine.git"
},
"author": "Justin Pinner <[email protected]>",
"license": "GPL-3.0-only",
"bugs": {
"url": "https://github.com/JustinPinner/EccentricEngine/issues"
},
"homepage": "https://github.com/JustinPinner/EccentricEngine#readme"
}