-
Notifications
You must be signed in to change notification settings - Fork 64
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.89 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.89 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
{
"name": "@hpcc-js/loader",
"version": "2.107.8",
"description": "hpcc-js - Loader",
"main": "dist/index.js",
"module": "dist/index.es6",
"unpkg": "dist/index.min.js",
"jsdelivr": "dist/index.min.js",
"types": "types/index.d.ts",
"typesVersions": {
"<3.8": {
"*": [
"types-3.4/index.d.ts"
]
}
},
"files": [
"dist/*",
"types/*",
"types-3.4/*",
"src/*"
],
"scripts": {
"clean": "rimraf --glob lib* types dist *.tsbuildinfo",
"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",
"bundle": "rollup -c",
"bundle-watch": "npm run bundle -- -w",
"minimize": "terser dist/index.js -c -m --source-map \"content='dist/index.js.map',url='index.min.js.map'\" -o dist/index.min.js",
"gen-legacy-types": "downlevel-dts ./types ./types-3.4",
"build": "npm run compile-es6 && npm run bundle",
"watch": "npm-run-all compile-es6 -p compile-es6-watch bundle-watch",
"stamp": "node ../../node_modules/@hpcc-js/bundle/src/stamp.js",
"lint": "eslint ./src",
"docs": "typedoc --options tdoptions.json .",
"update": "npx --yes npm-check-updates -u -t minor"
},
"dependencies": {
"@hpcc-js/api": "^2.14.0",
"@hpcc-js/chart": "^2.86.0",
"@hpcc-js/codemirror": "^2.65.0",
"@hpcc-js/common": "^2.73.0",
"@hpcc-js/comms": "^2.100.0",
"@hpcc-js/composite": "^2.9.0",
"@hpcc-js/dgrid": "^2.34.0",
"@hpcc-js/dgrid2": "^2.5.0",
"@hpcc-js/eclwatch": "^2.76.8",
"@hpcc-js/form": "^2.12.0",
"@hpcc-js/graph": "^2.87.0",
"@hpcc-js/html": "^2.44.0",
"@hpcc-js/layout": "^2.51.0",
"@hpcc-js/map": "^2.79.0",
"@hpcc-js/map-deck": "^2.9.0",
"@hpcc-js/marshaller": "^2.27.8",
"@hpcc-js/observablehq-compiler": "^1.4.0",
"@hpcc-js/other": "^2.17.0",
"@hpcc-js/phosphor": "^2.20.0",
"@hpcc-js/react": "^2.55.0",
"@hpcc-js/timeline": "^2.54.0",
"@hpcc-js/tree": "^2.42.0",
"@hpcc-js/util": "^2.53.0",
"@hpcc-js/wasm": "1.20.1"
},
"devDependencies": {
"@hpcc-js/bundle": "^2.12.0",
"@hpcc-js/requirejs-shim": "^2.3.0",
"es6-promise": "4.2.8",
"tslib": "2.8.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hpcc-systems/Visualization.git"
},
"author": "Gordon Smith <gordonjsmith@gmail.com>",
"contributors": [],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/hpcc-systems/Visualization/issues"
},
"homepage": "https://github.com/hpcc-systems/Visualization"
}