-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
36 lines (36 loc) · 1.03 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
{
"name": "d3-scale-cluster",
"version": "2.0.1",
"description": "D3 scale that clusters data into discrete groups",
"repository": "schnerd/d3-scale-cluster",
"author": "David Schnurr",
"license": "MIT",
"main": "dist/d3-scale-cluster.cjs.js",
"module": "dist/d3-scale-cluster.esm.js",
"browser": "dist/d3-scale-cluster.umd.js",
"scripts": {
"test": "npm run lint && npm run jest",
"jest": "jest",
"lint": "eslint src",
"build": "rollup -c"
},
"dependencies": {
"ckmeans": "^2.0.1"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^11.1.0",
"@rollup/plugin-node-resolve": "^7.1.3",
"eslint": "^7.0.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jest": "^23.11.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"jest": "^26.0.1",
"prettier": "^2.0.5",
"rollup": "^2.9.1"
}
}