forked from jakemccormick/d3-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.01 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
{
"name": "d3-node",
"version": "3.0.0",
"description": "Server-side D3 with ease",
"main": "src/index.js",
"scripts": {
"lint": "eslint src/",
"test": "npm run lint && mocha test",
"format": "standard --fix"
},
"type": "module",
"repository": {
"type": "git",
"url": "http://github.com/bradoyler/d3-node.git"
},
"keywords": [
"d3",
"isomorphic",
"maps",
"charts"
],
"author": "Brad Oyler <[email protected]> (github.com/bradoyler)",
"license": "MIT",
"dependencies": {
"d3": "^7.6.1",
"jsdom": "^16.7.0"
},
"devDependencies": {
"eslint": "^6.7.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"mocha": "^7.2.0",
"svg2png": "4.1.1",
"topojson": "^1.6.27"
},
"bugs": {
"url": "https://github.com/d3-node/d3-node/issues"
},
"homepage": "https://github.com/d3-node/d3-node"
}