Replace submodule with package.json.
This is better, because now we can enumerate all of our dependencies without embedding them as submodules. After pulling, run `npm install`.
Showing
package.json
0 → 100644
{ | ||
"name": "d3", | ||
"version": "1.29.5", | ||
"description": "A small, free JavaScript library for manipulating documents based on data.", | ||
"keywords": ["dom", "w3c", "visualization", "svg", "animation", "canvas"], | ||
"homepage": "http://mbostock.github.com/d3/", | ||
"author": {"name": "Mike Bostock", "url": "http://bost.ocks.org/mike"}, | ||
"repository": {"type": "git", "url": "http://github.com/mbostock/d3.git"}, | ||
"dependencies": { | ||
"uglify-js": "1.0.6", | ||
"jsdom": "0.2.3", | ||
"vows": "0.5.10" | ||
} | ||
} |
Please register or sign in to comment