forked from mapbox/mapbox-sdk-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.33 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
{
"name": "mapbox",
"version": "0.6.2",
"description": "interface to mapbox services",
"main": "lib/client.js",
"scripts": {
"lint": "eslint --no-eslintrc -c .eslintrc lib test/*.js",
"test": "tap --coverage test/*.js",
"docs": "documentation . --format=md > API.md",
"build": "npm run build-dist && npm run build-min",
"build-dist": "browserify -s MapboxClient lib/client.js > dist/mapbox-sdk.js",
"build-min": "uglifyjs -c -m < dist/mapbox-sdk.js > dist/mapbox-sdk.min.js"
},
"repository": {
"type": "git",
"url": "https://github.com/mapbox/mapbox-sdk-js.git"
},
"keywords": [
"mapbox",
"interface",
"api",
"sdk"
],
"author": "Tom MacWright",
"license": "ISC",
"bugs": {
"url": "https://github.com/mapbox/mapbox-sdk-js/issues"
},
"homepage": "https://github.com/mapbox/mapbox-sdk-js",
"devDependencies": {
"aws-sdk": "^2.1.41",
"browserify": "^11.0.0",
"documentation": "^2.1.0-alpha2",
"eslint": "^0.24.1",
"geojson-random": "^0.2.2",
"geojsonhint": "^1.1.0",
"hat": "0.0.3",
"polyline": "^0.1.0",
"tap": "^1.3.1",
"uglifyjs": "^2.4.10"
},
"dependencies": {
"es6-template-strings": "^1.0.0",
"geojsonhint": "^1.0.1",
"hat": "0.0.3",
"invariant": "^2.1.0",
"superagent": "^1.2.0",
"xtend": "^4.0.0"
}
}