forked from mieweb/wcdatavis
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 2.79 KB
/
package.json
File metadata and controls
102 lines (102 loc) · 2.79 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
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "@mieweb/datavis-glide",
"version": "4.0.0",
"description": "DataVis GLIDE (Graphical Layer for Interactive Data Exploration)",
"keywords": [
"data",
"grid",
"table",
"graph",
"chart"
],
"license": "PROPRIETARY",
"author": "Taylor Venable <tvenable@mieweb.com>",
"files": [
"index.js",
"global-jquery.js",
"ie-fixes.js",
"meteor.js",
"src/*.js",
"src/**/*.js",
"datavis.js",
"wcdatavis.css",
"dist/wcdatavis.min.js",
"dist/wcdatavis.css"
],
"main": "index.js",
"browser": "datavis.js",
"repository": {
"type": "git",
"url": "https://github.com/mieweb/wcdatavis.git"
},
"config": {
"chromedriver_version": "LATEST"
},
"scripts": {
"dev": "vite",
"lint": "eslint src tests/lib tests/selenium",
"test": "node scripts/run-tests.js",
"rollup": "rollup --bundleConfigAsCjs -c rollup.config.js",
"uglify": "uglifyjs -c -o dist/wcdatavis.min.js dist/wcdatavis.js"
},
"dependencies": {
"bignumber.js": "=9.3.1",
"block-ui": "=2.70.1",
"chart.js": "=4.5.1",
"core-js": "=3.47.0",
"css.escape": "=1.5.1",
"datavis-ace": "=4.0.0-PRE.1",
"es6-symbol": "=3.1.4",
"flatpickr": "=4.6.13",
"handlebars": "=4.7.8",
"jquery": "=3.7.1",
"jquery-contextmenu": "=2.10.1",
"jquery-ui": "=1.14.1",
"json-formatter-js": "https://github.com/mieweb/json-formatter-js.git",
"moment": "=2.30.1",
"numeral": "=2.0.6",
"papaparse": "=5.5.3",
"sprintf-js": "=1.1.3",
"squirrelly": "=9.1.0",
"sumoselect": "https://github.com/mieweb/jquery.sumoselect.git",
"svelte-gantt": "=4.4.3",
"underscore": "=1.13.8"
},
"devDependencies": {
"@babel/core": "=7.28.5",
"@babel/preset-env": "=7.28.5",
"@babel/preset-typescript": "=7.28.5",
"@rollup/plugin-babel": "=6.1.0",
"@rollup/plugin-commonjs": "=29.0.0",
"@rollup/plugin-node-resolve": "=16.0.3",
"@rollup/plugin-replace": "=6.0.3",
"@rollup/plugin-typescript": "=12.3.0",
"@stylistic/eslint-plugin": "=5.6.1",
"@tsconfig/svelte": "=5.0.6",
"@types/mocha": "=10.0.10",
"bluebird": "=3.7.2",
"chai": "=6.2.2",
"chromedriver": "^146.0.6",
"eslint": "=9.39.2",
"eslint-plugin-import": "=2.32.0",
"eslint-plugin-unused-imports": "=4.4.1",
"globals": "=17.0.0",
"jsdoc": "=4.0.5",
"jshint": "=2.13.6",
"json5": "=2.2.3",
"lodash": "=4.17.21",
"mermaid": "=11.12.2",
"mocha": "=11.7.5",
"rollup": "=4.55.1",
"rollup-plugin-postcss": "=4.0.2",
"rollup-plugin-svelte": "=7.2.3",
"selenium-webdriver": "=4.39.0",
"serve": "=14.2.5",
"serve-handler": "=6.1.6",
"svelte": "=4.2.19",
"svelte-preprocess": "=6.0.3",
"typescript": "=5.9.3",
"uglify-js": "=3.19.3",
"vite": "=7.3.1"
}
}