-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
37 lines (37 loc) · 898 Bytes
/
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
{
"name": "fast-kde",
"type": "module",
"version": "0.2.2",
"keywords": [
"kernel density estimation",
"kde",
"heatmap",
"deriche"
],
"license": "BSD-3-Clause",
"author": "Jeffrey Heer (http://idl.cs.washington.edu)",
"main": "src/index.js",
"unpkg": "dist/fast-kde.min.js",
"jsdelivr": "dist/fast-kde.min.js",
"repository": {
"type": "git",
"url": "https://github.com/uwdata/fast-kde.git"
},
"scripts": {
"prebuild": "rimraf dist && mkdir dist",
"build": "rollup -c",
"test": "mocha 'test/**/*-test.js' && eslint src test",
"prepublishOnly": "yarn test && yarn build"
},
"dependencies": {
"d3-color": "^3.1.0"
},
"devDependencies": {
"@rollup/plugin-terser": "^0.4.4",
"eslint": "^8.57.0",
"mocha": "^10.3.0",
"rimraf": "^5.0.5",
"rollup": "^4.12.1",
"rollup-plugin-bundle-size": "^1.0.3"
}
}