forked from erri120/rpgmpacker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.21 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": "rpgmpacker",
"version": "2.0.4",
"description": "Packaging RPG Maker games in an automated pipeline.",
"keywords": [
"RPG Maker",
"RPG Maker MV",
"RPG Maker MZ",
"CI/CD",
"CLI"
],
"main": "./dist/index.js",
"bin": {
"rpgmpacket": "./dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc -p .",
"watch": "tsc -p . --watch",
"test": "mocha --recursive"
},
"license": "MIT",
"author": "erri120 <[email protected]>",
"repository": {
"type": "git",
"url": "git+https://github.com/erri120/rpgmpacker.git"
},
"bugs": {
"url": "https://github.com/erri120/rpgmpacker/issues"
},
"homepage": "https://github.com/erri120/rpgmpacker#readme",
"devDependencies": {
"@types/chai": "^4.3.0",
"@types/mocha": "^9.0.0",
"@types/node": "^16.11.17",
"@types/sinon": "^10.0.6",
"@types/yargs": "^17.0.8",
"@typescript-eslint/eslint-plugin": "^5.8.1",
"@typescript-eslint/parser": "^5.8.1",
"chai": "^4.3.4",
"eslint": "^8.5.0",
"mocha": "^9.1.3",
"nodemon": "^2.0.15",
"sinon": "^12.0.1",
"ts-node": "^10.4.0",
"typescript": "^4.5.4"
},
"dependencies": {
"yargs": "^17.3.1"
}
}