forked from tangrams/tangram
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
125 lines (125 loc) · 3.77 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "tangram",
"version": "0.14.2",
"description": "WebGL Maps for Vector Tiles",
"repository": {
"type": "git",
"url": "git://github.com/tangrams/tangram.git"
},
"main": "dist/tangram.min.js",
"homepage": "https://github.com/tangrams/tangram",
"keywords": [
"maps",
"graphics",
"rendering",
"visualization",
"WebGL",
"OpenStreetMap"
],
"config": {
"output": "",
"output_map": ""
},
"engines": {
"npm": ">=2.0.0"
},
"scripts": {
"start": "npm run watch",
"test": "npm run lint && npm run build-bundle && npm run test-local",
"test-ci": "npm run lint && npm run build-bundle && npm run test-remote",
"test-remote": "./node_modules/karma/bin/karma start --browsers SL_Firefox --single-run",
"test-local": "./node_modules/karma/bin/karma start --browsers Chrome --single-run",
"karma-start": "./node_modules/karma/bin/karma start --browsers Chrome --no-watch",
"karma-run": "./node_modules/karma/bin/karma run --browsers Chrome",
"lint": "./node_modules/.bin/jshint src/ && jshint test/",
"build": "npm run build-bundle && npm run build-minify",
"build-bundle": "./node_modules/.bin/browserify src/module.js -t [ babelify --presets [ es2015 ] ] -t brfs --debug -s Tangram -p browserify-derequire -p [ ./build/quine.js tangram.debug.js.map ] -p [ mapstraction ./dist/tangram.debug.js.map ] -o ./dist/tangram.debug.js",
"build-minify": "./node_modules/.bin/uglifyjs dist/tangram.debug.js -c warnings=false -m | sed -e 's/tangram.debug.js.map//g' > dist/tangram.min.js && npm run build-size",
"build-size": "gzip dist/tangram.min.js -c | wc -c | awk '{kb=$1/1024; print kb}' OFMT='%.0fk minified+gzipped'",
"watch": "./node_modules/.bin/budo src/module.js:dist/tangram.debug.js --port 8000 --cors --live -- -t [ babelify --presets [ es2015 ] ] -t brfs -s Tangram -p [ ./build/quine.js tangram.debug.temp.js.map ] -p [ mapstraction ./dist/tangram.debug.temp.js.map ]"
},
"files": [
"src/*",
"dist/tangram.debug.js",
"dist/tangram.debug.js.map",
"dist/tangram.min.js"
],
"author": {
"name": "Mapzen",
"email": "[email protected]"
},
"contributors": [
{
"name": "Brett Camper"
},
{
"name": "Peter Richardson"
},
{
"name": "Patricio Gonzalez Vivo"
},
{
"name": "Karim Naaji"
},
{
"name": "Ivan Willig"
},
{
"name": "Lou Huang"
},
{
"name": "David Valdman"
},
{
"name": "Nick Doiron"
},
{
"name": "Francisco López"
},
{
"name": "David Manzanares"
}
],
"license": "MIT",
"dependencies": {
"@mapbox/vector-tile": "1.3.0",
"brfs": "1.4.3",
"csscolorparser": "1.0.3",
"earcut": "2.1.1",
"fontfaceobserver": "2.0.7",
"geojson-vt": "2.4.0",
"gl-mat3": "1.0.0",
"gl-mat4": "1.1.4",
"gl-shader-errors": "1.0.3",
"js-yaml": "tangrams/js-yaml#read-only",
"jszip": "tangrams/jszip#read-only",
"pbf": "3.1.0",
"strip-comments": "0.3.2",
"topojson-client": "tangrams/topojson-client#read-only"
},
"devDependencies": {
"babelify": "7.3.0",
"babel-preset-es2015": "6.16.0",
"browserify": "14.4.0",
"browserify-derequire": "0.9.4",
"budo": "10.0.3",
"chai": "1.9.2",
"chai-as-promised": "4.1.1",
"core-js": "2.4.1",
"glob": "4.0.6",
"jshint": "2.9.4",
"karma": "1.5.0",
"karma-browserify": "5.1.1",
"karma-chrome-launcher": "2.0.0",
"karma-mocha": "0.1.9",
"karma-mocha-reporter": "1.0.0",
"karma-sauce-launcher": "tangrams/karma-sauce-launcher#firefox-profiles2",
"karma-sinon": "1.0.4",
"mapstraction": "1.0.1",
"mocha": "1.21.4",
"sinon": "1.10.3",
"through2": "2.0.3",
"uglify-js": "2.4.14",
"yargs": "1.3.2"
}
}