forked from crossfilter/universe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.25 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
{
"name": "universe",
"version": "0.8.1",
"description": "The fastest way to query and explore multivariate datasets",
"main": "src/universe.js",
"directories": {
"test": "test"
},
"files": ["src", "universe.*"],
"dependencies": {
"crossfilter2": "1.4.1",
"reductio": "^0.6.2"
},
"devDependencies": {
"ava": "^0.15.2",
"browserify": "^13.0.0",
"browserify-shim": "^3.8.12",
"uglify-js": "^2.7.0"
},
"scripts": {
"lint": "eslint src",
"test": "yarn lint && ava --verbose",
"browserify": "browserify ./src/universe.js -d -s universe -o universe.js",
"min": "uglifyjs universe.js -o universe.min.js",
"build": "npm run browserify && npm run min && echo 'Done building.'",
"watch": "onchange 'src/**' -i -w -- npm run build",
"prepublish": "npm run build",
"postpublish": "git push --tags"
},
"repository": {
"type": "git",
"url": "https://github.com/crossfilter/universe.git"
},
"keywords": [
"crossfilter",
"query",
"multivariate",
"datavis",
"filtering",
"data"
],
"author": "Tanner Linsley",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/crossfilter/universe/issues"
},
"homepage": "https://github.com/crossfilter/universe"
}