forked from mapbox/mapbox-gl-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
102 lines (102 loc) · 2.9 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "mapbox-gl",
"description": "A WebGL interactive maps library",
"version": "0.5.1",
"main": "js/mapbox-gl.js",
"license": "BSD",
"repository": {
"type": "git",
"url": "git://github.com/mapbox/mapbox-gl-js.git"
},
"dependencies": {
"brfs": "1.2.0",
"csscolorparser": "~1.0.2",
"envify": "2.0.1",
"es6ify": "^1.5.1",
"feature-filter": "1.0.0",
"geojson-rewind": "~0.1.0",
"geojson-vt": "^1.0.1",
"gl-matrix": "https://github.com/toji/gl-matrix/archive/v2.2.1.tar.gz",
"glify": "0.4.2",
"mapbox-gl-style-spec": "6.0.0",
"minifyify": "^4.4.0",
"pbf": "~0.0.2",
"pngjs": "^0.4.0",
"point-geometry": "0.0.0",
"rbush": "^1.3.4",
"request": "^2.39.0",
"unitbezier": "0.0.0",
"vector-tile": "~0.1.3"
},
"devDependencies": {
"benchmark": "~1.0.0",
"browserify": "~5.9.1",
"faucet": "0.0.1",
"istanbul": "^0.3.0",
"jshint": "2.5.10",
"mapbox-gl-test-suite": "git+https://github.com/mapbox/mapbox-gl-test-suite.git",
"mkdirp": "^0.5.0",
"mocha": "~1.21.3",
"serve": "^1.4.0",
"spritesmith": "0.19.2",
"st": "^0.5.1",
"tape": "2.14.0",
"traceur": "0.0.74",
"traceur-source-maps": "^1.0.6",
"watchify": "1.0.1",
"zuul": "1.10.0"
},
"optionalDependencies": {
"gl": "git+https://github.com/kkaefer/headless-gl.git"
},
"browserify": {
"transform": [
"es6ify",
"envify",
"glify",
"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/dispatcher.js": "./js/util/browser/dispatcher.js"
},
"scripts": {
"start": "npm run watch & serve",
"lint": "jshint js test --exclude=js/lib/*",
"test": "npm run lint && tape test/js/*/*.js | faucet",
"test-suite": "node test/render.test.js || true",
"test-browser": "zuul test/js/*/*.js --local",
"watch": "watchify -v -d js/mapbox-gl.js -o dist/mapbox-gl-dev.js",
"build": "browserify -d js/mapbox-gl.js > dist/mapbox-gl-dev.js",
"production": "browserify js/mapbox-gl.js -d -p [minifyify --map mapbox-gl.js.map --output dist/mapbox-gl.js.map] > dist/mapbox-gl.js",
"prepublish": "npm run build && npm run production",
"cov": "istanbul cover tape test/js/*/*.js test/render.test.js -x js/lib/glmatrix.js -x js/lib/debugtext.js",
"docs": "cd docs/_generate && npm install && node generate.js"
},
"jshintConfig": {
"globals": {
"require": false,
"module": false,
"exports": false,
"console": false,
"self": false,
"__dirname": false
},
"predef": [
"-Map",
"-Worker"
],
"newcap": false,
"browser": true,
"node": true,
"globalstrict": true,
"trailing": true,
"undef": true,
"unused": true,
"debug": true,
"esnext": true
}
}