-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 849 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 849 Bytes
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
{
"name": "@comuns-rpgmaker/plugin-metadata",
"version": "0.2.5",
"description": "Automated tool for plugin metadata schema validation and generation",
"main": "index.js",
"scripts": {
"start": "node index.js",
"test": "mocha",
"test:coverage": "nyc --reporter=text --reporter=lcov npm run test"
},
"files": [
"src",
"schema"
],
"bin": {
"mz-mtdt": "cli.js"
},
"repository": {
"type": "git",
"url": "https://github.com/comuns-rpgmaker/plugin-metadata"
},
"keywords": [
"rpgmaker",
"rpgmakermz",
"comuns-rpgmaker",
"json",
"schema",
"metadata"
],
"author": "comuns-rpgmaker",
"license": "Zlib",
"dependencies": {
"ajv": "^6.12.6",
"yaml": "^1.10.2",
"yargs": "^15.4.1"
},
"devDependencies": {
"mocha": "^10.0.0",
"nyc": "^15.1.0"
}
}