forked from finos/perspective
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 2.54 KB
/
package.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
{
"name": "@finos/perspective-viewer-d3fc",
"version": "0.5.6",
"description": "Perspective.js D3FC Plugin",
"main": "./dist/cjs/perspective-viewer-d3fc.js",
"module": "./dist/cjs/perspective-viewer-d3fc.js",
"browser": {
"area": "./dist/esm/index/area.js",
"bar": "./dist/esm/index/bar.js",
"candlestick": "./dist/esm/index/candlestick.js",
"column": "./dist/esm/index/column.js",
"heatmap": "./dist/esm/index/heatmap.js",
"line": "./dist/esm/index/line.js",
"ohlc": "./dist/esm/index/ohlc.js",
"sunburst": "./dist/esm/index/sunburst.js",
"xy-scatter": "./dist/esm/index/xy-scatter.js",
"y-scatter": "./dist/esm/index/y-scatter.js"
},
"unpkg": "./dist/umd/perspective-viewer-d3fc.js",
"jsdelivr": "./dist/umd/perspective-viewer-d3fc.js",
"files": [
"dist/**/*",
"babel.config.js"
],
"scripts": {
"bench": "npm-run-all bench:build bench:run",
"bench:build": "echo \"No Benchmarks\"",
"bench:run": "echo \"No Benchmarks\"",
"prebuild": "mkdirp dist/esm",
"build:babel": "cpx \"src/**/*\" dist && babel src/js --source-maps --out-dir dist/esm",
"build:webpack:cjs": "webpack --color --config src/config/cjs.config.js",
"build:webpack:umd": "webpack --color --config src/config/umd.config.js",
"build:webpack": "npm-run-all build:webpack:cjs build:webpack:umd",
"build": "npm-run-all --silent build:babel build:webpack:cjs build:webpack:umd",
"test:build": "cpx \"test/html/*\" dist/umd",
"watch": "webpack --color --watch --config src/config/d3fc.watch.config.js",
"test:run": "jest --rootDir=. --config=../perspective-test/jest.config.js --silent --color --noStackTrace 2>&1",
"test": "npm-run-all test:build test:run",
"clean": "rimraf dist",
"clean:screenshots": "rimraf \"screenshots/**/*.@(failed|diff).png\""
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/finos/perspective"
},
"author": "",
"license": "Apache-2.0",
"dependencies": {
"@finos/perspective": "^0.5.6",
"@finos/perspective-viewer": "^0.5.6",
"babel-runtime": "^6.26.0",
"chroma-js": "^1.3.4",
"core-js": "^3.6.4",
"d3": "^5.7.0",
"d3-svg-legend": "^2.25.6",
"d3fc": "14.0.40",
"gradient-parser": "0.1.5"
},
"devDependencies": {
"@finos/perspective-test": "^0.5.6"
}
}