-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.32 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": "rx-bing-map",
"description": "A reactive extension for the Bing maps rendering control",
"version": "0.0.11",
"license": "MIT",
"main": "./RxBingMap.js",
"repository": "erikschlegel/RxBing",
"BingMapsLibrary": "http://ecn.dev.virtualearth.net/mapcontrol/mapcontrol.ashx?v=7.0",
"maintainers": [
{
"name": "Erik Schlegel",
"email": "[email protected]",
"web": "erikschlegel.com"
}
],
"devDependencies": {
"browserify": "^11.0.1",
"browserify-shim": "^3.8.3",
"jscs": "^2.1.0"
},
"dependencies": {
"extend": "^3.0.0",
"rx": "*",
"rx-bing-services": "0.0.3",
"rx-dom": "*",
"grunt": "^0.4.5",
"grunt-contrib-jshint": "~0.6.0",
"grunt-contrib-nodeunit": "~0.2.0",
"grunt-bower-task": "^0.4.0",
"grunt-browserify": "^4.0.0",
"babel": "^5.8.21",
"babelify": "^6.1.3",
"grunt-cli": "^0.1.13",
"grunt-contrib-watch": "^0.6.1",
"grunt-mocha-test": "*",
"grunt-bower-install": "*",
"express": "~4.12.4"
},
"browserify": {
"transform": [
"babelify"
]
},
"scripts": {
"server-start": "node server.js",
"build": "npm install -g bower && bower install",
"build-examples": "grunt browserify:example",
"install-examples": "npm install grunt-cli -g && grunt browserify:example"
}
}