forked from perspective-dev/perspective
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.9 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.9 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
{
"name": "@jpmorganchase/perspective-viewer-d3fc",
"version": "0.2.19",
"description": "Perspective.js",
"main": "cjs/js/plugin/plugin.js",
"files": [
"build/**/*",
"cjs/**/*",
"babel.config.js"
],
"scripts": {
"bench": "npm-run-all bench:build bench:run",
"bench:build": "echo \"No Benchmarks\"",
"bench:run": "echo \"No Benchmarks\"",
"prebuild": "mkdir -p cjs",
"build:babel": "cp -r src/* cjs && babel src/js --source-maps --out-dir cjs/js",
"build:webpack": "webpack --color --config src/config/d3fc.plugin.config.js",
"build": "npm-run-all build:babel build:webpack",
"test:build": "cp test/html/* build",
"watch": "webpack --color --watch --config src/config/d3fc.watch.config.js",
"test:run": "jest --silent --color 2>&1",
"test": "npm-run-all test:build test:run",
"clean": "find build -mindepth 1 -delete && find cjs -mindepth 1 -delete",
"clean:screenshots": "find screenshots/ \\( -name *.diff.png -o -name *.failed.png \\) -mindepth 1 -delete"
},
"jest": {
"roots": [
"test/js"
],
"verbose": true,
"testURL": "http://localhost/",
"transform": {},
"automock": false
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/jpmorganchase/perspective"
},
"author": "",
"license": "Apache-2.0",
"dependencies": {
"@jpmorganchase/perspective": "^0.2.18",
"@jpmorganchase/perspective-viewer": "^0.2.18",
"babel-runtime": "^6.26.0",
"chroma-js": "^1.3.4",
"d3": "^5.7.0",
"d3-svg-legend": "^2.25.6",
"d3fc": "^14.0.26",
"gradient-parser": "0.1.5"
},
"devDependencies": {
"babel-loader": "^8.0.5",
"webpack": "^3.5.6"
}
}