forked from schnerd/d3-scale-cluster
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.08 KB
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 1.08 KB
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
{
"name": "d3-scale-cluster",
"version": "1.2.0",
"description": "D3 scale that clusters data into discrete groups",
"repository": "schnerd/d3-scale-cluster",
"main": "src/index.js",
"browser": "dist/d3-scale-cluster.min.js",
"scripts": {
"test": "npm run lint && node spec/index.js",
"test-node-modern": "npm run lint && node spec/nodeModernIndex.js",
"build": "webpack",
"lint": "eslint src/* spec/*",
"bench": "node bench/index.js",
"rebuild": "node-gyp rebuild",
"test-native": "node spec/native.js",
"debug-native": "lldb -- \"$(which node)\" spec/native.js"
},
"author": "David Schnurr",
"license": "MIT",
"devDependencies": {
"bindings": "^1.3.0",
"eslint": "^4.15.0",
"eslint-config-standard": "^11.0.0-beta.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1",
"jasmine": "^2.5.1",
"jasmine-console-reporter": "^1.2.7",
"node-addon-api": "^1.2.0",
"sinon": "^4.2.2",
"webpack": "^1.13.2"
},
"gypfile": true
}