forked from Experience-Monks/google-panorama-by-id
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.34 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
{
"name": "google-panorama-by-id",
"version": "2.1.0",
"description": "gets a Google Street View by pano id",
"main": "./index.js",
"browser": {
"./index.js": "./browser.js",
"./lib/request.js": "./lib/request-jsonp.js"
},
"license": "MIT",
"author": {
"name": "Matt DesLauriers",
"email": "[email protected]",
"url": "https://github.com/mattdesl"
},
"dependencies": {
"jsonp": "^0.2.0",
"request": "^2.58.0"
},
"devDependencies": {
"browserify": "^10.2.4",
"budo": "^4.0.0",
"faucet": "0.0.1",
"garnish": "^2.1.3",
"smokestack": "^3.3.0",
"tape": "^4.0.0"
},
"scripts": {
"test-node": "node test.js | faucet",
"test-browser": "browserify test.js | testling | faucet",
"test": "npm run test-node && npm run test-browser",
"start": "budo demo/index.js:bundle.js --live --verbose --dir demo | garnish"
},
"keywords": [
"lat",
"lng",
"pano",
"panorama",
"panoramic",
"street",
"view",
"google",
"image",
"id",
"panoid",
"long",
"service",
"streetviewservice"
],
"repository": {
"type": "git",
"url": "git://github.com/Jam3/google-panorama-by-id.git"
},
"homepage": "https://github.com/Jam3/google-panorama-by-id",
"bugs": {
"url": "https://github.com/Jam3/google-panorama-by-id/issues"
}
}