-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 863 Bytes
/
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
{
"name": "bitmelo-tmx-convert",
"version": "1.0.1",
"description": "A command line tool to convert tmx files to tilemap data for the Bitmelo game engine",
"main": "./src/index.js",
"bin": "./src/index.js",
"preferGlobal": true,
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/byersdz/bitmelo-tmx-convert.git"
},
"keywords": [],
"author": "David Byers",
"license": "MIT",
"bugs": {
"url": "https://github.com/byersdz/bitmelo-tmx-convert/issues"
},
"homepage": "https://github.com/byersdz/bitmelo-tmx-convert#readme",
"devDependencies": {
"eslint": "^5.14.1",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.16.0"
},
"dependencies": {
"commander": "2.19.0",
"tmx-parser": "1.5.0"
}
}