forked from firebelley/godot-export
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.15 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
{
"name": "godot-export",
"version": "1.0.0",
"description": "Exports Godot games.",
"main": "lib/main.js",
"scripts": {
"build": "tsc && webpack",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint . --ext .ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/firebelley/godot-export.git"
},
"author": "Firebelley",
"license": "MIT",
"bugs": {
"url": "https://github.com/firebelley/godot-export/issues"
},
"homepage": "https://github.com/firebelley/godot-export#readme",
"dependencies": {
"@actions/core": "^1.2.0",
"@actions/exec": "^1.0.2",
"@actions/github": "^2.0.0",
"@actions/io": "^1.0.1",
"ini": "^1.3.5",
"sanitize-filename": "^1.6.3",
"semver": "^7.1.1"
},
"devDependencies": {
"@types/ini": "^1.3.30",
"@types/node": "^12.12.21",
"@types/semver": "^6.2.0",
"@typescript-eslint/eslint-plugin": "^2.12.0",
"@typescript-eslint/parser": "^2.12.0",
"eslint": "^6.8.0",
"eslint-plugin-github": "^3.4.0",
"prettier": "^1.19.1",
"typescript": "^3.7.4",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10"
}
}