-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
62 lines (62 loc) · 2.07 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
57
58
59
60
61
62
{
"name": "@mapbox/mapbox-upload-validate",
"version": "4.8.0",
"description": "Validate that a file can be uploaded to Mapbox",
"main": "index.js",
"scripts": {
"pretest": "jshint bin lib test",
"test": "node pretest.js && eslint index.js lib && tape test/*.test.js",
"coverage": "istanbul cover tape test/*.js && coveralls < ./coverage/lcov.info"
},
"bin": {
"mapbox-upload-validate": "bin/mapbox-upload-validate.js"
},
"repository": {
"type": "git",
"url": "git://github.com/mapbox/mapbox-upload-validate"
},
"author": "Mapbox",
"license": "ISC",
"bugs": {
"url": "https://github.com/mapbox/mapbox-upload-validate/issues"
},
"homepage": "https://github.com/mapbox/mapbox-upload-validate",
"dependencies": {
"@mapbox/mapbox-file-sniff": "~1.0.0",
"@mapbox/mapnik-omnivore": "^10.0.0",
"@mapbox/mbtiles": "^0.10.0",
"@mapbox/tilejson": "^1.0.3",
"@mapbox/tilelive": "~5.12.0",
"@mapbox/tilelive-omnivore": "^4.3.0",
"@mapbox/tilelive-vector": "^4.2.0",
"@mapbox/tiletype": "~0.3.0",
"fastlog": "^1.1.0",
"gdal": "^0.9.9",
"mapbox-studio-default-fonts": "https://mapbox-npm.s3.amazonaws.com/package/mapbox-studio-default-fonts-0.0.4-4afb5235f457bd1c1a5a70fce6c2aa83bf7a851e.tgz",
"mapbox-studio-pro-fonts": "https://mapbox-npm.s3.amazonaws.com/package/mapbox-studio-pro-fonts-1.0.0-9870a90b713f307b9391829602f4d5857e419615.tgz",
"mapbox-upload-limits": "^1.4.2",
"mapnik": "4.x || 3.x",
"pretty-bytes": "^3.0.0",
"queue-async": "^1.0.7",
"split": "~1.0.0",
"step": "~0.0.6",
"underscore": "^1.7.0"
},
"devDependencies": {
"coveralls": "^3.0.2",
"eslint": "^5.12.0",
"eslint-config-unstyled": "^1.1.0",
"istanbul": "^0.4.5",
"jshint": "^2.6.3",
"mapnik-test-data": "http://mapbox-npm.s3.amazonaws.com/package/mapnik-test-data-2.0.3-fece0a9c546074a1479e9eae2333184029bb2279.tgz",
"mock-fs": "^4.7.0",
"tape": "^4.9.2"
},
"jshintConfig": {
"node": true,
"globalstrict": false,
"undef": true,
"unused": true,
"noarg": true
}
}