-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
46 lines (46 loc) · 1.25 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
{
"name": "emptymap.js",
"version": "1.0.1",
"description": "A module that helps in navigation of map like pan, zoom and rotation but does nothing itself.",
"main": "emptymap.js",
"scripts": {
"test": "mocha test/test.js",
"build-debug": "browserify emptymap.js --debug --standalone EmptyMap | exorcist dist/emptymap.js.map > dist/emptymap.js",
"build-min": "browserify emptymap.js --standalone EmptyMap | uglifyjs -c -m > dist/emptymap.min.js",
"build": "npm run build-debug && npm run build-min"
},
"repository": {
"type": "git",
"url": "https://github.com/gagan-bansal/emptymap.js"
},
"keywords": [
"maps",
"framework",
"svg",
"vector",
"tiles",
"spherical mercator",
"web mercator",
"navigation",
"pan",
"zoom",
"rotation"
],
"author": "Gagan Bansal <gaganbansal123@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/gagan-bansal/emptymap.js/issues"
},
"homepage": "https://github.com/gagan-bansal/emptymap.js",
"devDependencies": {
"browserify": "^8.1.1",
"chai": "^3.2.0",
"chai-deep-closeto": "^0.1.1",
"exorcist": "^0.1.6",
"mocha": "^2.1.0",
"uglify-js": "^2.4.16"
},
"dependencies": {
"transformatrix": "^1.1.1"
}
}