-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 841 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 841 Bytes
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
{
"name": "@rkaravia/static-map",
"version": "0.2.2",
"description": "Render map tiles in a canvas, given a slippy map tile URL.",
"main": "index.js",
"repository": {
"type": "git",
"url": "git://github.com/rkaravia/static-map"
},
"scripts": {
"build": "browserify index.js -o static-map.js --standalone StaticMap",
"prepare": "npm run build",
"start": "watchify index.js -o static-map.js --standalone StaticMap",
"test": "eslint index.js && tape test/*.test.js"
},
"keywords": [],
"author": "Roman Karavia",
"license": "MIT",
"dependencies": {
"async.queue": "^0.5.2",
"limiter": "^1.1.3"
},
"devDependencies": {
"eslint": "^5.9.0",
"eslint-plugin-es5": "^1.3.1",
"tape": "^4.9.1",
"watchify": "^3.11.0"
},
"files": [
"index.js",
"static-map.js"
]
}