Files
openlayers/package.json
Tim Schaub f8e6fac90e Modules used in postinstall are dependencies
Since async and htmlparser2 are used by the postinstall task, they need to be listed as dependencies.  These will get installed when ol3 is a dependency of another project.
2014-04-30 17:54:39 -06:00

31 lines
661 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.11.0",
"jshint": "~2.4.4",
"jsdoc": "~3.3.0-alpha5",
"walk": "~2.3.1",
"fs-extra": "~0.8.1",
"nomnom": "~1.6.2",
"temp": "~0.7.0"
}
}