forked from cgav/d3-tip
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.06 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
{
"name": "@lix/d3-tip",
"version": "0.7.2",
"description": "Tooltips for d3 svg visualizations",
"author": "Constantin Gavrilete",
"main": "./src/index.js",
"directories": {
"doc": "docs",
"example": "examples"
},
"scripts": {
"clean": "rm -rf build",
"build": "./node_modules/webpack/bin/webpack.js --config webpack.config.js",
"build-examples": "./node_modules/webpack/bin/webpack.js --config webpack-examples.config.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/cgav/d3-tip"
},
"keywords": [
"d3",
"tooltip"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/cgav/d3-tip/issues"
},
"homepage": "https://github.com/cgav/d3-tip",
"devDependencies": {
"babel-core": "^6.10.4",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.9.0",
"copy-webpack-plugin": "^3.0.1",
"uglify-js": "^2.7.0",
"uglifycss": "0.0.20",
"webpack": "^2.1.0-beta.7"
},
"dependencies": {
"d3": "^4.1.0"
}
}