-
Notifications
You must be signed in to change notification settings - Fork 8
/
packageXXX.json
72 lines (72 loc) · 2.33 KB
/
packageXXX.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
{
"private": true,
"name": "@hpcc-js/visualizer",
"version": "2.1.2",
"description": "",
"main": "dist/index.js",
"scripts": {
"clean": "rimraf lib* types dist res/*.js res/*.map",
"compile-es6": "tsc --module es6 --outDir ./lib-es6",
"compile-es6-watch": "npm run compile-es6 -- -w",
"compile-umd": "tsc --module umd --outDir ./lib-umd",
"compile-umd-watch": "npm run compile-umd -- -w",
"generate-paths": "node ./util/index.js",
"bundle": "rollup -c",
"bundle-watch": "npm run bundle -- -w",
"minimize": "terser dist/index.js -c -m -o res/index.min.js",
"build": "run-s generate-paths compile-es6 bundle minimize",
"watch": "run-p compile-es6-watch bundle-watch",
"link-hpcc-js": "mklink /J hpcc-js ..\\hpcc-js",
"lint": "tslint --project . src/**/*.ts",
"docs": "typedoc --options tdoptions.json .",
"update": "npx npm-check-updates -u -t minor",
"update-major": "npx npm-check-updates -u"
},
"dependencies": {
"@hpcc-js/api": "^2.8.54",
"@hpcc-js/chart": "^2.69.0",
"@hpcc-js/codemirror": "^2.52.0",
"@hpcc-js/common": "^2.59.0",
"@hpcc-js/comms": "^2.64.0",
"@hpcc-js/composite": "^2.5.80",
"@hpcc-js/dgrid": "^2.22.0",
"@hpcc-js/form": "^2.8.63",
"@hpcc-js/graph": "^2.72.0",
"@hpcc-js/html": "^2.34.0",
"@hpcc-js/layout": "^2.39.0",
"@hpcc-js/map": "^2.67.0",
"@hpcc-js/observable-md": "^2.44.0",
"@hpcc-js/other": "^2.13.72",
"@hpcc-js/phosphor": "^2.14.53",
"@hpcc-js/react": "^2.42.0",
"@hpcc-js/timeline": "^2.42.0",
"@hpcc-js/tree": "^2.32.0",
"@hpcc-js/util": "^2.40.0",
"d3-dsv": "^3.0.1",
"d3-fetch": "^3.0.1",
"tslib": "^2.3.1"
},
"devDependencies": {
"@rollup/plugin-alias": "3.1.9",
"@rollup/plugin-commonjs": "21.1.0",
"@rollup/plugin-node-resolve": "13.3.0",
"npm-run-all": "4.1.5",
"rimraf": "5.0.5",
"rollup": "2.79.1",
"rollup-plugin-postcss": "4.0.2",
"rollup-plugin-sourcemaps": "0.6.3",
"terser": "5.24.0",
"tslint": "6.1.3",
"typescript": "5.2.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GordonSmith/Visualizer.git"
},
"author": "",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/hpcc-systems/Visualizer/issues"
},
"homepage": "https://github.com/hpcc-systems/Visualizer#readme"
}