-
Notifications
You must be signed in to change notification settings - Fork 43
/
package.json
88 lines (88 loc) · 3.13 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "compassql",
"version": "0.21.2",
"description": "CompassQL visualization query language",
"main": "build/compassql.js",
"unpkg": "build/compassql.min.js",
"jsdelivr": "build/compassql.min.js",
"module": "build/src/cql.ts",
"types": "build/src/cql.d.ts",
"typings": "./build/src/cql",
"directories": {
"test": "test"
},
"scripts": {
"prepare": "beemo create-config",
"prebuild": "mkdir -p build",
"build": "tsc && cp package.json build/src/ && rollup -c",
"build:examples": "npm run build && ./scripts/build-examples.sh",
"build:examples-only": "./scripts/build-examples.sh",
"postbuild": "terser build/compassql.js -cm --source-map content=build/compassql.js.map,filename=build/compassql.min.js.map -o build/compassql.min.js",
"clean": "rm -rf build",
"deploy": "npm run clean && npm run lint && npm run test && scripts/deploy.sh",
"prettierbase": "beemo prettier '*.{css,scss,html,md,yml}'",
"eslintbase": "beemo eslint .",
"format": "yarn eslintbase --fix && yarn prettierbase --write",
"lint": "yarn eslintbase && yarn prettierbase --check",
"schema": "npm run prebuild && typescript-json-schema --required true src/query.ts Query > build/compassql-schema.json",
"test": "jest --maxWorkers=4 && yarn lint",
"test:inspect": "node --inspect-brk ./node_modules/.bin/jest --runInBand",
"check:examples": "./scripts/check-examples.sh",
"watch:build": "npm run build && concurrently --kill-others -n Typescript,Rollup 'tsc -w' 'rollup -c -w'",
"watch:test": "jest --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/uwdata/CompassQL.git"
},
"keywords": [
"visualization",
"recommendation"
],
"author": {
"name": "UW Interactive Data Lab",
"url": "http://idl.cs.washington.edu"
},
"collaborators": [
"Kanit Wongsuphasawat <[email protected]> (http://kanitw.yellowpigz.com)",
"Dominik Moritz <[email protected]> (http://domoritz.de)",
"Jeffrey Heer <[email protected]> (http://jheer.org)"
],
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/uwdata/compassql/issues"
},
"homepage": "https://github.com/uwdata/compassql#readme",
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/plugin-transform-typescript": "^7.12.1",
"@babel/preset-env": "^7.12.7",
"@babel/preset-typescript": "^7.12.7",
"@rollup/plugin-commonjs": "^22.0.2",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^14.1.0",
"@types/chai": "^4.2.14",
"@types/jest": "^29.0.0",
"babel-jest": "^29.0.1",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"chai": "^4.2.0",
"concurrently": "^7.0.0",
"jest": "^29.0.1",
"rollup": "^2.33.1",
"rollup-plugin-sourcemaps": "^0.6.3",
"source-map-support": "^0.5.19",
"terser": "^5.3.8",
"typescript": "^4.0.5",
"typescript-json-schema": "^0.64.0",
"vega-datasets": "latest",
"vega-lite-dev-config": "^0.18.0"
},
"dependencies": {
"datalib": "~1.9.3",
"vega": "^5.4.0",
"vega-lite": "^4.17.0",
"vega-time": "^2.0.4",
"yargs": "^17.0.1"
}
}