mapscii/package.json

53 wiersze
1.1 KiB
JSON
Czysty Zwykły widok Historia

2016-09-18 00:44:31 +00:00
{
"name": "mapscii",
2020-02-18 20:42:14 +00:00
"version": "0.3.1",
"description": "MapSCII is a Braille & ASCII world map renderer for your console, based on OpenStreetMap",
"main": "main.js",
2016-09-18 00:44:31 +00:00
"scripts": {
2019-10-10 18:54:16 +00:00
"lint": "eslint src",
"start": "node main",
"test": "jest"
2016-09-18 00:44:31 +00:00
},
"repository": {
"type": "git",
"url": "https://github.com/rastapasta/mapscii.git"
},
"bin": {
"mapscii": "./bin/mapscii.sh"
},
"engines": {
"node": ">=10"
},
2016-09-18 00:44:31 +00:00
"keywords": [
"map",
"console",
2016-09-18 00:44:31 +00:00
"terminal",
"ascii",
2016-09-18 00:44:31 +00:00
"osm",
"vectortile",
2016-09-18 00:44:31 +00:00
"mbtiles"
],
"author": "Michael Straßburger <codepoet@cpan.org>",
"license": "MIT",
"dependencies": {
2018-10-17 16:16:24 +00:00
"@mapbox/vector-tile": "^1.3.1",
"bresenham": "0.0.4",
2020-02-18 20:41:39 +00:00
"earcut": "^2.2.2",
"env-paths": "^2.2.0",
2016-09-18 00:44:31 +00:00
"keypress": "^0.2.1",
2020-09-08 22:40:47 +00:00
"node-fetch": "^2.6.1",
2020-02-18 20:41:39 +00:00
"pbf": "^3.2.1",
2019-10-10 17:50:50 +00:00
"rbush": "^3.0.1",
2020-02-18 20:41:39 +00:00
"simplify-js": "^1.2.4",
"string-width": "^4.2.0",
"term-mouse": "^0.2.2",
"x256": "0.0.2",
2020-08-12 00:07:55 +00:00
"yargs": "^15.4.1"
2017-12-23 08:17:51 +00:00
},
"devDependencies": {
2020-09-08 22:40:47 +00:00
"eslint": "^7.8.1",
"eslint-plugin-jest": "^24.0.0",
"jest": "^26.4.2"
2016-09-18 00:44:31 +00:00
}
}