-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.33 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
44
45
46
47
{
"name": "arquero-worker",
"version": "0.0.2",
"description": "Worker thread support for Arquero.",
"keywords": [
"data",
"query",
"database",
"table",
"dataframe",
"transform",
"arrays"
],
"license": "BSD-3-Clause",
"author": "Jeffrey Heer (http://idl.cs.washington.edu)",
"main": "dist/arquero-worker-client.js",
"module": "src/index.js",
"unpkg": "dist/arquero-worker-client.min.js",
"jsdelivr": "dist/arquero-worker-client.min.js",
"repository": {
"type": "git",
"url": "https://github.com/uwdata/arquero-worker.git"
},
"scripts": {
"prebuild": "rimraf dist && mkdir dist",
"build": "rollup -c",
"build:docs": "cp dist/arquero-worker-client.min.js* dist/arquero-worker.min.js* docs/",
"lint": "yarn eslint src test --ext .js",
"pretest": "rollup -c --config-node-worker",
"test": "TZ=America/Los_Angeles tape 'test/**/*-test.js' --require esm",
"prepublishOnly": "yarn test && yarn lint && yarn build"
},
"dependencies": {
"arquero": "^3.0.0"
},
"devDependencies": {
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^11.2.0",
"eslint": "^7.20.0",
"esm": "^3.2.25",
"rimraf": "^3.0.2",
"rollup": "^2.39.0",
"rollup-plugin-bundle-size": "1.0.3",
"rollup-plugin-terser": "^7.0.2",
"tape": "^5.1.1"
}
}