-
Notifications
You must be signed in to change notification settings - Fork 73
/
package.json
142 lines (142 loc) · 5.67 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
{
"name": "@heavyai/charting",
"version": "3.0.0",
"license": "Apache-2.0",
"copyright": "2017",
"description": "A multi-dimensional charting library built to work natively with crossfilter and rendered using d3.js.",
"keywords": [
"visualization",
"svg",
"animation",
"canvas",
"chart",
"dimensional",
"crossfilter",
"d3"
],
"homepage": "http://heavy.ai",
"bugs": "https://github.com/mapd/mapd-charting/issues",
"author": {
"name": "HEAVY.AI",
"url": "http://heavy.ai"
},
"repository": {
"type": "git",
"url": "https://github.com/mapd/mapd-charting.git"
},
"main": "src/index.js",
"scripts": {
"build:commonjs": "cross-env BABEL_ENV=commonjs babel index.js --out-dir lib",
"build": "webpack",
"watch": "webpack --watch",
"build:docs": "./node_modules/documentation/bin/documentation.js build src/** -f html -o docs",
"build:example": "webpack --config ./example/webpack.config.js",
"clean": "rm -rf build.log node_modules/ dist/ && npm run clean:docs && npm run clean:example",
"clean:docs": "rm -rf docs",
"clean:example": "rm -rf build.log example/assets/*",
"coverage": "nyc report --reporter=text-lcov > coverage.lcov",
"docs": "npm run build:docs && open docs/index.html",
"format": "prettier --write '{src,test}/**/*.js'",
"format:check": "prettier --debug-check --list-different '{src,test}/**/*.js'",
"format:check:silent": "./scripts/check-formatting.sh",
"format:lint": "npm run format && npm run lint:fix",
"format:check:lint": "npm run format:check && npm run lint",
"lint": "./node_modules/.bin/eslint $(find src -name \"*.js\" ! -name '*.spec.js')",
"lint:fix": "./node_modules/.bin/eslint --fix $(find src -name \"*.js\" ! -name '*.spec.js')",
"lint:errors": "npm run lint -- --quiet",
"nyc": "nyc",
"report": "nyc report --reporter=lcov && open coverage/lcov-report/index.html",
"selenium:install": "selenium-standalone install --version=3.0.0-beta4",
"selenium:start": "selenium-standalone start --version=3.0.0-beta4",
"start": "webpack-dev-server --content-base ./example --config ./example/webpack.config.js",
"test": "npm run format:check:silent && npm run lint && npm run test:unit",
"test:unit": "find ./src -name '*.spec.js' | BABEL_ENV=test NODE_PATH=./src xargs nyc mocha --config ./test/.mocharc.yml"
},
"dependencies": {
"@heavyai/data-layer": "npm:mapd-data-layer-2@0.0.25",
"@heavyai/draw": "https://github.com/heavyai/mapd-draw.git#fc0b065",
"@mapbox/unitbezier": "0.0.0",
"@mapd/connector": "github:omnisci/mapd-connector#d75148077a2a4b23d66d89c63d05c20e5735af2e",
"@mapd/crossfilter": "github:omnisci/mapd-crossfilter#6f291ac",
"@turf/bbox": "^6.5.0",
"@turf/bbox-clip": "^6.5.0",
"axios": "^0.19.2",
"chevrotain": "~6.5.0",
"d3": "^3.5.17",
"fast-deep-equal": "^2.0.1",
"legendables": "git+https://github.com/heavyai/legendables.git#292fded68a222ffa5cefa3d2f59779026a23f022",
"mapbox-gl": "1.9.1",
"moment": "^2.29.4",
"ramda": "0.21.0",
"simplify-js": "^1.2.4",
"wellknown": "^0.5.0"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-decorators": "^7.0.0",
"@babel/plugin-proposal-do-expressions": "^7.0.0",
"@babel/plugin-proposal-export-default-from": "^7.0.0",
"@babel/plugin-proposal-export-namespace-from": "^7.0.0",
"@babel/plugin-proposal-function-bind": "^7.0.0",
"@babel/plugin-proposal-function-sent": "^7.0.0",
"@babel/plugin-proposal-json-strings": "^7.0.0",
"@babel/plugin-proposal-logical-assignment-operators": "^7.0.0",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.0.0",
"@babel/plugin-proposal-numeric-separator": "^7.0.0",
"@babel/plugin-proposal-optional-chaining": "^7.0.0",
"@babel/plugin-proposal-pipeline-operator": "^7.0.0",
"@babel/plugin-proposal-throw-expressions": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-syntax-import-meta": "^7.0.0",
"@babel/preset-env": "^7.20.2",
"@babel/preset-flow": "^7.0.0",
"@babel/preset-react": "^7.18.6",
"@babel/register": "^7.0.0",
"@heavyai/connector": "https://github.com/heavyai/heavyai-connector.git#a2d43593c9fa9893919c0fe955c64ed14cd8262b",
"@heavyai/crossfilter": "https://github.com/heavyai/heavyai-crossfilter.git#3a559bd47e0a14fe591ad9d57ae06f8c617ca0ba",
"@heavyai/d3-combo-chart": "https://github.com/heavyai/mapd3.git#d2bce81606000f65fda8b091809f0c78ba72e670",
"apache-arrow": "^7.0.0",
"atob": "^2.0.3",
"babel-eslint": "^9.0.0",
"babel-loader": "^8.0.0",
"babel-plugin-transform-require-ignore": "^0.1.0",
"babel-preset-es2020": "^1.0.2",
"chai": "^3.5.0",
"chai-spies": "^0.7.1",
"codecov": "^2.1.0",
"cross-env": "^5.2.1",
"css-loader": "^0.22.0",
"documentation": "4.0.0-rc.1",
"eslint": "^6.1.0",
"eslint-config-airbnb": "^3.1.0",
"eslint-plugin-import": "^2.8.0",
"expose-loader": "^0.7.1",
"extract-text-webpack-plugin": "^3.0.0",
"http-server": "^0.11.2",
"jsdom": "^11.7.0",
"lodash": "^4.17.21",
"mocha": "^9.2.2",
"mocha-jenkins-reporter": "^0.1.9",
"node-sass": "^4.14.1",
"nyc": "^15.0.0",
"prettier": "^1.19.1",
"proxyquire": "1.7.4",
"sass-loader": "6.0.7",
"selenium-standalone": "^6.24.0",
"style-loader": "^0.13.0",
"webpack": "^3.2.0",
"webpack-dev-server": "^2.5.1"
},
"nyc": {
"check-coverage": false,
"lines": 32,
"statements": 31.5,
"functions": 16.5,
"branches": 12.83,
"exclude": [
"**/*.spec.js"
]
}
}