-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.js
More file actions
27 lines (26 loc) · 787 Bytes
/
Copy pathpackage.js
File metadata and controls
27 lines (26 loc) · 787 Bytes
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
var d3 = require("../index");
console.log(JSON.stringify({
"name": "d3",
"version": d3.version,
"description": "A small, free JavaScript library for manipulating documents based on data.",
"keywords": ["dom", "w3c", "visualization", "svg", "animation", "canvas"],
"homepage": "http://d3js.org",
"author": {"name": "Mike Bostock", "url": "http://bost.ocks.org/mike"},
"repository": {"type": "git", "url": "https://github.com/mbostock/d3.git"},
"main": "index.js",
"browserify" : "index-browserify.js",
"jam": {
"main": "d3.js",
"shim": {
"exports": "d3"
}
},
"dependencies": {
"jsdom": "0.3.x"
},
"devDependencies": {
"uglify-js": "2.2.x",
"vows": "0.7.x"
},
"scripts": {"test": "./node_modules/vows/bin/vows"}
}, null, 2));