-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
37 lines (37 loc) · 987 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-benchmarks",
"type": "module",
"version": "0.0.4",
"keywords": [
"kernel density estimation",
"kde",
"deriche",
"box filter",
"benchmarks"
],
"license": "BSD-3-Clause",
"author": "Jeffrey Heer (http://idl.cs.washington.edu)",
"main": "src/index.js",
"unpkg": "dist/fast-kde-benchmarks.min.js",
"jsdelivr": "dist/fast-kde-benchmarks.min.js",
"repository": {
"type": "git",
"url": "https://github.com/uwdata/fast-kde.git"
},
"scripts": {
"prebenchmarks": "rimraf results && mkdir results",
"benchmarks": "node ./benchmarks/run",
"lint": "eslint src benchmarks --ext .js",
"prebuild": "rimraf dist && mkdir dist",
"build": "rollup -c",
"prepublishOnly": "yarn lint && yarn build"
},
"devDependencies": {
"arquero": "^4.8.7",
"eslint": "^8.0.1",
"rimraf": "^3.0.2",
"rollup": "^2.58.0",
"rollup-plugin-bundle-size": "^1.0.3",
"rollup-plugin-terser": "^7.0.2"
}
}