forked from mapbox/leaflet-pip
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
66 lines (66 loc) · 1.01 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
{
"name": "leaflet-pip",
"version": "0.0.5",
"description": "point in polygon searches for leaflet",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": "",
"keywords": [
"leaflet",
"plugin",
"point",
"in",
"polygon",
"geo",
"geographical"
],
"devDependencies": {
"mocha": "~1.8",
"expect.js": "~0.2.0"
},
"testling": {
"browsers": {
"ie": [
8,
9,
10
],
"opera": [
12
],
"firefox": [
3.5,
6,
7,
15,
16,
17,
18,
19
],
"chrome": [
23,
24,
25
],
"safari": [
5.1,
6
],
"iphone": [
6
]
},
"harness": "mocha",
"files": [
"test/support/leaflet.js"
]
},
"author": "Tom MacWright <[email protected]>",
"license": "BSD",
"dependencies": {
"point-in-polygon": "0.0.0"
}
}