forked from vega/compassql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.45 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
{
"name": "compassql",
"version": "0.19.16",
"description": "CompassQL visualization query language",
"main": "build/src/cql.js",
"typings": "./build/src/cql",
"directories": {
"test": "test"
},
"scripts": {
"prebuild": "mkdir -p build",
"build": "tsc && browserify build/src/cql.js -d -s cql | exorcist build/compassql.js.map > build/compassql.js",
"postbuild": "uglifyjs build/compassql.js -cm --source-map build/compassql.min.js.map > build/compassql.min.js",
"clean": "rm -rf build",
"deploy": "npm run clean && npm run lint && npm run test && scripts/deploy.sh",
"lint": "tslint -c tslint.json src/**/*.ts test/**/*.ts",
"watch": "nodemon -x 'npm run build && npm run test:only && npm run lint'",
"schema": "npm run prebuild && typescript-json-schema --required true src/query.ts Query > build/compassql-schema.json",
"tsc": "tsc",
"test": "tsc && npm run test:only",
"posttest": "npm run lint",
"test:only": "nyc --reporter=html --reporter=text-summary mocha build/test",
"codecov": "nyc report --reporter=json && codecov -f coverage/*.json",
"test:debug": "mocha --debug-brk build/test"
},
"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": {
"@types/chai": "^3.4.34",
"@types/mocha": "^2.2.38",
"browserify": "~13.0.0",
"browserify-versionify": "~1.0.6",
"chai": "~3.5.0",
"codecov": "~1.0.1",
"d3": "~4",
"exorcist": "~0.4.0",
"mocha": "~2.4.4",
"nodemon": "~1.9.2",
"nyc": "~6.4.4",
"source-map-support": "~0.4.0",
"tsify": "~3.0.0",
"tslint": "~4.3.1",
"typescript": "^2.3.4",
"uglify-js": "~2.6.1",
"vega-datasets": "latest"
},
"dependencies": {
"datalib": "~1.7.0",
"typescript-json-schema": "^0.9.0",
"vega-lite": "2.0.0-beta.19"
},
"browserify": {
"transform": [
"browserify-versionify"
]
}
}