-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.55 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.55 KB
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
{
"name": "@heavyai/d3-combo-chart",
"version": "1.0.0",
"description": "A fast chart library for the fastest DB",
"main": "dist/d3-combo-chart.js",
"contributors": [
{
"name": "Christophe Viau",
"email": "christopheviau@gmail.com"
}
],
"scripts": {
"docs:build": "documentation build -f \"html\" examples/examples.js -o doc",
"docs:serve": "documentation serve --watch examples/examples.js -o doc",
"build": "npm run build:prod && npm run build:dev",
"build:prod": "webpack --env prod --mode production",
"build:dev": "webpack --env dev --mode development",
"prod": "webpack --env prod --mode production --watch",
"dev": "webpack --env dev --mode development --watch",
"clean": "npm run cache clean && rm -rf node_modules",
"test": "mocha-webpack test/**/*.spec.js --require test/setup.js --webpack-env.dev --webpack-config webpack.config-spec.js --watch",
"format": "eslint \"src/**/*.js\" --fix"
},
"repository": {
"type": "git",
"url": "https://github.com/mapd/mapd3"
},
"keywords": [
"d3",
"chart",
"library",
"graph",
"reusable",
"es6",
"es2015",
"visualization"
],
"author": "HEAVY.AI",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/mapd/mapd3/issues"
},
"homepage": "https://github.com/mapd/mapd3",
"browserslist": [
"last 2 versions",
"not ie 10"
],
"dependencies": {
"base-64": "^0.1.0",
"d3": "4.11.0",
"d3-svg-legend": "^2.25.3",
"lodash.clonedeep": "^4.1.1",
"lodash.throttle": "^4.1.1"
},
"devDependencies": {
"autoprefixer": "^8.5.1",
"babel-cli": "6.24.1",
"babel-core": "6.26.0",
"babel-eslint": "7.2.3",
"babel-loader": "7.1.2",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "1.6.0",
"chai": "^4.1.2",
"css-loader": "^0.28.7",
"documentation": "4.0.0-rc.1",
"eslint": "^4.18.2",
"ink-docstrap": "^1.3.0",
"jsdoc": "^3.5.4",
"jsdom": "^11.6.2",
"json-loader": "^0.5.7",
"mini-css-extract-plugin": "^2.9.2",
"mocha": "^5.0.5",
"mocha-webpack": "^1.1.0",
"null-loader": "^0.1.1",
"postcss-loader": "^2.1.5",
"requirejs-plugins": "^1.0.2",
"sanitize-html": "^1.13.0",
"sass-embedded": "^1.49.11",
"sass-loader": "^14.2.1",
"sinon": "^4.5.0",
"terser-webpack-plugin": "^5.3.12",
"text": "requirejs/text",
"webpack": "^5.98.0",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^4.7.4",
"webpack-node-externals": "^1.6.0",
"yargs": "^10.0.3"
}
}