-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 770 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 770 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
{
"name": "nes-tmx",
"version": "1.0.1",
"description": "make tiled map editor maps into header files for nes development in c",
"main": "main.js",
"scripts": {
"test": "tape tests/*.js && standard",
"start": "node ./makemap"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fritzvd/nes-tmx.git"
},
"keywords": [
"nesdev",
"nes",
"tiled",
"tmx"
],
"author": "fritzvd",
"license": "MIT",
"bugs": {
"url": "https://github.com/fritzvd/nes-tmx/issues"
},
"homepage": "https://github.com/fritzvd/nes-tmx#readme",
"devDependencies": {
"standard": "^6.0.8",
"tape": "^4.5.1"
},
"dependencies": {
"commander": "^2.9.0",
"through": "^2.3.8",
"tmx-parser": "^1.4.0"
}
}