mapscii/package.json

53 wiersze
1.1 KiB
JSON
Czysty Zwykły widok Historia

2016-09-18 00:44:31 +00:00
{
"name": "mapscii",
"version": "0.3.0",
"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": {
2019-03-25 01:14:19 +00:00
"node": ">=8"
},
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",
2019-10-10 17:50:50 +00:00
"bluebird": "^3.7.0",
"bresenham": "0.0.4",
2019-10-10 17:50:50 +00:00
"earcut": "^2.2.1",
2016-09-18 00:44:31 +00:00
"keypress": "^0.2.1",
2019-06-17 05:12:23 +00:00
"node-fetch": "^2.6.0",
"pbf": "^3.2.0",
2019-10-10 17:50:50 +00:00
"rbush": "^3.0.1",
2018-10-17 16:16:24 +00:00
"simplify-js": "^1.2.3",
2019-06-17 05:12:23 +00:00
"string-width": "^4.1.0",
"term-mouse": "^0.2.0",
"userhome": "^1.0.0",
"x256": "0.0.2"
2017-12-23 08:17:51 +00:00
},
"devDependencies": {
2019-10-10 17:50:50 +00:00
"eslint": "^6.5.1",
2019-10-10 18:54:16 +00:00
"eslint-plugin-jest": "^22.17.0",
2019-10-10 17:50:50 +00:00
"jest": "^24.9.0"
2016-09-18 00:44:31 +00:00
}
}