You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
carto/package.json

57 lines
1.1 KiB

{
14 years ago
"name": "carto",
"version": "0.14.0",
14 years ago
"description": "Mapnik Stylesheet Compiler",
"url": "https://github.com/mapbox/carto",
"repository": {
"type": "git",
"url": "http://github.com/mapbox/carto.git"
},
"author": {
11 years ago
"name": "Mapbox",
"url": "http://mapbox.com/",
"email": "info@mapbox.com"
},
14 years ago
"keywords": [
"mapnik",
"maps",
"css",
"stylesheets"
],
"contributors": [
"Tom MacWright <macwright@gmail.com>",
"Konstantin Käfer",
"Alexis Sellier <self@cloudhead.net>"
],
"licenses": [
{
"type": "Apache"
}
],
14 years ago
"bin": {
10 years ago
"carto": "./bin/carto"
},
"man": "./man/carto.1",
14 years ago
"main": "./lib/carto/index",
"engines": {
"node": ">=0.4.x"
14 years ago
},
"dependencies": {
"underscore": "~1.6.0",
"mapnik-reference": "~6.0.1",
"optimist": "~0.6.0"
14 years ago
},
"devDependencies": {
"mocha": "1.12.x",
"jshint": "0.2.x",
"sax": "0.1.x",
"istanbul": "~0.2.14",
"coveralls": "~2.10.1"
},
"scripts": {
"pretest": "npm install",
"test": "mocha -R spec",
"coverage": "istanbul cover ./node_modules/.bin/_mocha && coveralls < ./coverage/lcov.info"
}
}