-
Notifications
You must be signed in to change notification settings - Fork 64
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.58 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.58 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
{
"name": "@hpcc-js/marshaller",
"version": "2.28.4",
"description": "hpcc-js - Viz Marshaller",
"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/chart": "^2.86.1",
"@hpcc-js/codemirror": "^2.65.1",
"@hpcc-js/common": "^2.73.1",
"@hpcc-js/comms": "^2.101.3",
"@hpcc-js/composite": "^2.9.3",
"@hpcc-js/ddl-shim": "^2.22.0",
"@hpcc-js/dgrid": "^2.34.2",
"@hpcc-js/form": "^2.12.1",
"@hpcc-js/graph": "^2.87.1",
"@hpcc-js/layout": "^2.51.1",
"@hpcc-js/map": "^2.79.1",
"@hpcc-js/other": "^2.17.1",
"@hpcc-js/phosphor": "^2.20.2",
"@hpcc-js/util": "^2.53.1"
},
"devDependencies": {
"@hpcc-js/bundle": "^2.12.0",
"d3-array": "^1",
"d3-collection": "^1",
"d3-dsv": "^1",
"d3-fetch": "^1",
"d3-selection": "^1",
"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"
}