summaryrefslogtreecommitdiff
path: root/package.json
blob: 90fbbd9f994fa0222ce33c5d047046d3a2d3ef7d (plain)
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
  "name": "carto",
  "version": "1.2.0",
  "description": "Mapnik Stylesheet Compiler",
  "url": "https://github.com/mapbox/carto",
  "repository": {
    "type": "git",
    "url": "http://github.com/mapbox/carto.git"
  },
  "author": {
    "name": "Mapbox",
    "url": "http://mapbox.com/",
    "email": "info@mapbox.com"
  },
  "keywords": [
    "mapnik",
    "maps",
    "css",
    "stylesheets"
  ],
  "contributors": [
    "Tom MacWright <macwright@gmail.com>",
    "Konstantin Käfer",
    "Alexis Sellier <self@cloudhead.net>"
  ],
  "license": "Apache-2.0",
  "bin": {
    "carto": "./bin/carto"
  },
  "man": "./man/carto.1",
  "main": "./lib/carto/index",
  "engines": {
    "node": ">=0.5.x"
  },
  "dependencies": {
    "chroma-js": "~1.3.5",
    "hsluv": "~0.0.1",
    "js-yaml": "~3.12.0",
    "lodash": "~4.17.10",
    "mapnik-reference": "~8.10.0",
    "semver": "~5.6.0",
    "yargs": "~12.0.1"
  },
  "devDependencies": {
    "coveralls": "~3.0.0",
    "istanbul": "~0.4.5",
    "mocha": "~5.2.0",
    "mocha-eslint": "^4.0.0",
    "sax": "~1.2.1"
  },
  "scripts": {
    "pretest": "npm install && mocha -R spec --timeout 50000 -f jslint",
    "test": "mocha -R spec --timeout 50000 -i -f jslint",
    "coverage": "istanbul cover ./node_modules/.bin/_mocha -- -R spec --timeout 50000 -i -f jslint && coveralls < ./coverage/lcov.info"
  }
}