-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
34 lines (34 loc) · 1.1 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
{
"name": "kiltagear",
"version": "1.0.0",
"description": "A 2D fighting game presented by NiemiSmäsh.",
"private": true,
"browser": true,
"main": "kiltagear.js",
"engines": {
"node": ">=10.15.0"
},
"scripts": {
"start": "sh -c 'node_modules/.bin/tsc --noEmit' && sh -c 'node_modules/.bin/parcel src/index.html --open'",
"build": "sh -c 'node_modules/.bin/tsc --noEmit' && sh -c 'node_modules/.bin/parcel build src/index.html --public-url=\"./\" --out-dir=\"release\"'",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/VsKatshuma/KiltaGear.git"
},
"author": "NiemiSmäsh",
"license": "Refer to LICENSE file",
"bugs": {
"url": "https://github.com/VsKatshuma/KiltaGear/issues"
},
"homepage": "https://github.com/VsKatshuma/KiltaGear#readme",
"dependencies": {
"pixi.js": "^5.1.3"
},
"devDependencies": {
"@types/node": "^11.11.5",
"parcel-bundler": "^1.9.4",
"typescript": "^3.6.3"
}
}