2016-09-18 02:44:31 +02:00
|
|
|
{
|
2016-11-03 02:14:47 +01:00
|
|
|
"name": "mapscii",
|
2020-02-18 21:42:14 +01:00
|
|
|
"version": "0.3.1",
|
2019-10-14 17:01:50 +02:00
|
|
|
"description": "MapSCII is a Braille & ASCII world map renderer for your console, based on OpenStreetMap",
|
2016-11-03 02:14:47 +01:00
|
|
|
"main": "main.js",
|
2016-09-18 02:44:31 +02:00
|
|
|
"scripts": {
|
2019-10-10 20:54:16 +02:00
|
|
|
"lint": "eslint src",
|
2020-02-19 10:23:55 +01:00
|
|
|
"start": "node main",
|
|
|
|
"test": "jest"
|
2016-09-18 02:44:31 +02:00
|
|
|
},
|
2016-11-03 02:14:47 +01:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://github.com/rastapasta/mapscii.git"
|
|
|
|
},
|
2016-11-03 23:13:44 +01:00
|
|
|
"bin": {
|
|
|
|
"mapscii": "./bin/mapscii.sh"
|
|
|
|
},
|
2017-04-29 00:15:31 +02:00
|
|
|
"engines": {
|
2020-05-28 12:18:00 +02:00
|
|
|
"node": ">=10"
|
2017-04-26 18:22:07 +02:00
|
|
|
},
|
2016-09-18 02:44:31 +02:00
|
|
|
"keywords": [
|
|
|
|
"map",
|
2016-09-20 23:10:41 +02:00
|
|
|
"console",
|
2016-09-18 02:44:31 +02:00
|
|
|
"terminal",
|
2016-09-20 23:10:41 +02:00
|
|
|
"ascii",
|
2016-09-18 02:44:31 +02:00
|
|
|
"osm",
|
2016-09-20 23:10:41 +02:00
|
|
|
"vectortile",
|
2016-09-18 02:44:31 +02:00
|
|
|
"mbtiles"
|
|
|
|
],
|
|
|
|
"author": "Michael Straßburger <codepoet@cpan.org>",
|
|
|
|
"license": "MIT",
|
|
|
|
"dependencies": {
|
2018-10-17 18:16:24 +02:00
|
|
|
"@mapbox/vector-tile": "^1.3.1",
|
2020-02-18 21:41:39 +01:00
|
|
|
"bluebird": "^3.7.2",
|
2016-09-27 13:57:59 +02:00
|
|
|
"bresenham": "0.0.4",
|
2020-02-18 21:41:39 +01:00
|
|
|
"earcut": "^2.2.2",
|
2016-09-18 02:44:31 +02:00
|
|
|
"keypress": "^0.2.1",
|
2019-06-17 07:12:23 +02:00
|
|
|
"node-fetch": "^2.6.0",
|
2020-02-18 21:41:39 +01:00
|
|
|
"pbf": "^3.2.1",
|
2019-10-10 19:50:50 +02:00
|
|
|
"rbush": "^3.0.1",
|
2020-02-18 21:41:39 +01:00
|
|
|
"simplify-js": "^1.2.4",
|
|
|
|
"string-width": "^4.2.0",
|
|
|
|
"term-mouse": "^0.2.2",
|
2016-11-04 01:42:23 +01:00
|
|
|
"userhome": "^1.0.0",
|
2016-09-21 05:18:20 +02:00
|
|
|
"x256": "0.0.2"
|
2017-12-23 09:17:51 +01:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2020-05-21 14:47:59 +02:00
|
|
|
"eslint": "^7.0.0",
|
|
|
|
"eslint-plugin-jest": "^23.13.1",
|
|
|
|
"jest": "^26.0.1"
|
2016-09-18 02:44:31 +02:00
|
|
|
}
|
|
|
|
}
|