forked from mapbox/mapbox-gl-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.74 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
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "mapbox-gl",
"description": "A WebGL interactive maps library",
"version": "0.12.4",
"main": "js/mapbox-gl.js",
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "git://github.com/mapbox/mapbox-gl-js.git"
},
"dependencies": {
"brfs": "^1.4.0",
"csscolorparser": "^1.0.2",
"envify": "^3.4.0",
"feature-filter": "^1.0.3",
"geojson-vt": "^2.1.0",
"gl-matrix": "^2.3.1",
"mapbox-gl-function": "^1.0.0",
"mapbox-gl-style-spec": "^8.4.0",
"minifyify": "^7.0.1",
"pbf": "^1.3.2",
"pngjs": "^2.2.0",
"point-geometry": "^0.0.0",
"rbush": "^1.4.0",
"request": "^2.39.0",
"resolve-url": "^0.2.1",
"supercluster": "^2.0.0",
"unassertify": "^2.0.0",
"unitbezier": "^0.0.0",
"vector-tile": "^1.2.0",
"webworkify": "^1.0.2"
},
"devDependencies": {
"benchmark": "~1.0.0",
"browserify": "^12.0.1",
"budo": "^7.0.2",
"documentation": "3.0.0",
"eslint": "^1.5.0",
"eslint-config-mourner": "^1.0.0",
"istanbul": "^0.4.1",
"mapbox-gl-test-suite": "mapbox/mapbox-gl-test-suite#7a17d43bd8482a01dc165de6fff6ae4c33c4fc5d",
"prova": "^2.1.2",
"sinon": "^1.15.4",
"st": "^1.0.0",
"through": "^2.3.7",
"gl": "^2.1.5",
"watchify": "^3.2.2"
},
"browserify": {
"transform": [
"envify",
"brfs"
]
},
"browser": {
"./js/util/ajax.js": "./js/util/browser/ajax.js",
"./js/util/browser.js": "./js/util/browser/browser.js",
"./js/util/canvas.js": "./js/util/browser/canvas.js",
"./js/util/dom.js": "./js/util/browser/dom.js",
"./js/util/dispatcher.js": "./js/util/browser/dispatcher.js"
},
"scripts": {
"start": "budo js/mapbox-gl.js --serve=debug/mapbox-gl.js --live --port 9966 -- --transform --standalone mapboxgl",
"start-buffer": "budo bench/buffer/buffer_benchmark.js --port 6699 -- --transform unassertify --plugin [minifyify --map /bench/buffer/buffer_benchmark.js.map --output bench/buffer/buffer_benchmark.js.map] --standalone bufferBenchmark",
"lint": "eslint js test && documentation --lint",
"test": "npm run lint && prova test/js/*/*.js -q",
"test-suite": "node test/render.test.js && node test/query.test.js",
"build": "browserify -d js/mapbox-gl.js --standalone mapboxgl > dist/mapbox-gl-dev.js && npm run docs",
"production": "browserify js/mapbox-gl.js --debug --transform unassertify --plugin [minifyify --map mapbox-gl.js.map --output dist/mapbox-gl.js.map] --standalone mapboxgl > dist/mapbox-gl.js",
"prepublish": "npm run build && npm run production",
"cov": "istanbul cover prova test/js/*/*.js test/render.test.js -x js/lib/debugtext.js",
"docs": "documentation --github --format html --theme ./docs/_theme --output docs/api/"
}
}