The closure-util package works on Node 0.8, 0.10, and 0.11 (as of this writing), but it requires an updated version of npm to install on Node 0.8. For the build to pass on Travis, we update npm before installing other dependencies. For others who are installing the openlayers package, nothing special is required for Node 0.10 and above. For users on Node 0.8, the openlayers package will only install with an updated version of npm. This can be installed with npm itself.
npm install -g npm # only needed on Node 0.8
34 lines
743 B
JSON
34 lines
743 B
JSON
{
|
|
"name": "openlayers",
|
|
"version": "3.0.0-beta",
|
|
"description": "Mapping library",
|
|
"scripts": {
|
|
"postinstall": "node tasks/parse-examples.js",
|
|
"start": "node tasks/serve.js"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git://github.com/openlayers/ol3.git"
|
|
},
|
|
"license": "BSD",
|
|
"bugs": {
|
|
"url": "https://github.com/openlayers/ol3/issues"
|
|
},
|
|
"dependencies": {
|
|
"async": "~0.2.10",
|
|
"htmlparser2": "~3.7.1"
|
|
},
|
|
"devDependencies": {
|
|
"closure-util": "~0.14.0",
|
|
"jshint": "~2.5.1",
|
|
"jsdoc": "~3.3.0-alpha7",
|
|
"taffydb": "~2.7.0",
|
|
"underscore": "~1.6.0",
|
|
"walk": "~2.3.3",
|
|
"fs-extra": "~0.8.1",
|
|
"nomnom": "~1.6.2",
|
|
"temp": "~0.7.0",
|
|
"phantomjs": "~1.9.7-5"
|
|
}
|
|
}
|