-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
54 lines (54 loc) · 1.53 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
46
47
48
49
50
51
52
53
54
{
"name": "d3-ajacency-matrix-layout",
"version": "1.0.0",
"description": "a d3 ajacency matrix layout",
"main": "build/d3-adjacency-matrix-layout.js",
"scripts": {
"prepublish": "rm -rf build && mkdir build && rollup -c --banner \"$(preamble)\" -- index.js",
"test": "rm -rf build && mkdir build && rollup -c --banner \"$(preamble)\" -- index.js && cp build/d3-adjacency-matrix-layout.js ~/workspace/d3-adjacency-layout-example-project/04/",
"lint": "eslint index.js src --fix"
},
"repository": {
"type": "git",
"url": "https://github.com/micahstubbs/d3-adjacency-matrix-layout"
},
"keywords": [
"d3",
"boxplot"
],
"homepage": "https://github.com/micahstubbs/d3-adjacency-matrix-layout",
"author": {
"name":"contributors",
"email":"micah.stubbs@gmail.com"
},
"contributors": [
{
"name":"Elijah Meeks",
"email":"elijahmeeks@gmail.com"
},
{
"name": "@micahstubbs",
"email": "micah.stubbs@gmail.com"
}
],
"devDependencies": {
"babel-preset-es2015-rollup": "^1.1.1",
"cli": "^0.11.2",
"eslint": "^2.13.1",
"eslint-config-airbnb": "^9.0.1",
"eslint-plugin-import": "^1.10.2",
"eslint-plugin-jsx-a11y": "^1.5.5",
"eslint-plugin-react": "^5.2.2",
"package-preamble": "0.0",
"rollup": "^0.33.2",
"rollup-plugin-babel": "^2.6.1",
"rollup-plugin-json": "^2.0.1"
},
"dependencies": {
"d3": "^4.2.0"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/micahstubbs/d3-adjacency-matrix-layout/issues"
}
}