forked from caged/d3-tip
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.1 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
43
44
45
{
"name": "d3-tip",
"version": "0.8.0-alpha.1",
"description": "Tooltips for d3 svg visualizations",
"keywords": [
"d3",
"tooltip"
],
"homepage": "https://github.com/Caged/d3-tip",
"bugs": {
"url": "https://github.com/Caged/d3-tip/issues"
},
"license": "MIT",
"author": "Justin Palmer <[email protected]> (http://labratrevenge.com/d3-tip)",
"main": "index.js",
"directories": {
"doc": "docs",
"example": "examples"
},
"repository": {
"type": "git",
"url": "https://github.com/Caged/d3-tip"
},
"scripts": {
"circle:lint": "npm run -s lint -- --max-warnings 0 -f junit -o $CIRCLE_TEST_REPORTS/eslint/junit.xml",
"lint": "eslint .",
"test": "echo \"Error: no test specified\" && exit 1",
"server": "python3 -m http.server"
},
"dependencies": {
"d3-collection": "^1.0.1",
"d3-selection": "^1.0.2"
},
"devDependencies": {
"eslint": "^3.3.1",
"eslint-config-airbnb-base": "^5.0.3",
"eslint-plugin-import": "^1.14.0"
},
"engines": {
"node": ">=4.2.6"
},
"greenkeeper": {
"branchPrefix": "greenkeeper/"
}
}