-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.3 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 2.3 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
{
"name": "@finos/perspective-viewer-d3fc",
"version": "1.4.0",
"description": "Perspective.js D3FC Plugin",
"unpkg": "./dist/umd/perspective-viewer-d3fc.js",
"jsdelivr": "./dist/umd/perspective-viewer-d3fc.js",
"main": "./dist/umd/perspective-viewer-d3fc.js",
"exports": {
".": {
"require": "./dist/umd/perspective-viewer-d3fc.js",
"import": "./dist/esm/perspective-viewer-d3fc.js"
},
"./src/": "./src/",
"./dist/": "./dist/",
"./cdn/": "./dist/cdn/",
"./esm/": "./dist/esm/",
"./area": "./dist/esm/area.js",
"./bar": "./dist/esm/bar.js",
"./candlestick": "./dist/esm/candlestick.js",
"./column": "./dist/esm/column.js",
"./heatmap": "./dist/esm/heatmap.js",
"./line": "./dist/esm/line.js",
"./ohlc": "./dist/esm/ohlc.js",
"./sunburst": "./dist/esm/sunburst.js",
"./xy-scatter": "./dist/esm/xy-scatter.js",
"./y-scatter": "./dist/esm/y-scatter.js",
"./package.json": "./package.json"
},
"files": [
"dist/**/*",
"src/**/*"
],
"scripts": {
"bench": "npm-run-all bench:build bench:run",
"bench:build": "echo \"No Benchmarks\"",
"bench:run": "echo \"No Benchmarks\"",
"prebuild": "mkdirp dist/esm",
"build": "node ./build.js",
"test:build": "cpy --cwd test \"html/*\" ../dist/umd",
"watch": "webpack --color --watch --config src/config/d3fc.watch.config.js",
"test:run": "jest --rootDir=. --config=../../tools/perspective-test/jest.config.js --color",
"test": "npm-run-all test:build test:run",
"clean": "rimraf dist",
"clean:screenshots": "rimraf \"test/screenshots/**/*.@(failed|diff).png\""
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/finos/perspective"
},
"author": "",
"license": "Apache-2.0",
"dependencies": {
"@finos/perspective": "^1.4.0",
"@finos/perspective-viewer": "^1.4.0",
"chroma-js": "^1.3.4",
"d3": "^7.1.1",
"d3-svg-legend": "^2.25.6",
"d3fc": "15.2.4",
"gradient-parser": "1.0.2"
},
"devDependencies": {
"@finos/perspective-test": "^1.4.0"
}
}