forked from mapbox/carto
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.36 KB
/
package.json
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": "@naturalatlas/carto",
"version": "1.5.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": "[email protected]"
},
"keywords": [
"mapnik",
"maps",
"css",
"stylesheets"
],
"contributors": [
"Tom MacWright <[email protected]>",
"Konstantin Käfer",
"Alexis Sellier <[email protected]>"
],
"license": "Apache-2.0",
"bin": {
"carto": "./bin/carto"
},
"man": "./man/carto.1",
"main": "./lib/carto/index",
"engines": {
"node": ">=0.5.x"
},
"dependencies": {
"@naturalatlas/mapnik-reference": "^8.12.0",
"chroma-js": "~1.3.5",
"hsluv": "~0.0.1",
"js-yaml": "~3.12.0",
"lodash": "~4.17.10",
"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"
}
}