forked from crossfilter/reductio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.3 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
{
"name": "reductio",
"version": "1.0.0",
"description": "Reductio: Crossfilter groupings",
"main": "src/reductio.js",
"module": "main.js",
"directories": {
"test": "test"
},
"dependencies": {
"crossfilter2": "^1.5.2"
},
"devDependencies": {
"esm": "3.2.25",
"lodash": "4",
"rollup": "1",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-json": "4",
"rollup-plugin-node-resolve": "5",
"rollup-plugin-terser": "5",
"karma": "^4.3.0",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage-istanbul-reporter": "^2.0.0",
"karma-firefox-launcher": "^1.2.0",
"karma-jasmine": "^2.0.1"
},
"scripts": {
"test": "node -r esm ./node_modules/karma/bin/karma start",
"postpublish": "git push && git push --tags",
"build": "rollup -c rollup.config.js"
},
"repository": {
"type": "git",
"url": "https://github.com/esjewett/reductio.git"
},
"keywords": [
"crossfilter"
],
"author": {
"name": "Ethan Jewett"
},
"files": [
"index.js",
"main.js",
"src/**",
"reductio.js",
"reductio.min.js"
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/esjewett/reductio/issues"
},
"homepage": "https://github.com/esjewett/reductio",
"browser": {
"crossfilter": "crossfilter2"
}
}