-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 2.38 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 2.38 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
{
"name": "lagun-scatter-plot-matrix",
"version": "0.3.0",
"description": "Two plots: scatterPlotMattrix (a scatter plot matrix); mulipleScatterPlot (up to 9 Scatter plots displayed as a 3x3 matrix)",
"type": "module",
"dependencies": {
"d3": "7.8.5",
"d3-regression": "1.3.10"
},
"devDependencies": {
"@types/d3": "^7.4.3",
"@types/d3-selection": "^3.0.10",
"@types/d3-drag": "^3.0.7",
"@types/d3-array": "^3.2.1",
"@types/d3-brush": "^3.0.6",
"@typescript-eslint/eslint-plugin": "^7.1.0",
"cpy-cli": "^5.0.0",
"del-cli": "^5.1.0",
"esbuild": "^0.20.1",
"eslint": "^8.56.0",
"jsdom": "^24.0.0",
"mocha": "^10.3.0",
"npm-run-all": "^4.1.5",
"test-console": "^2.0.0",
"typescript": "^5.3.3"
},
"scripts": {
"build": "npm-run-all clean test:eslint build:jsFiles build:cssFiles copy:cssHtmlWidget:* build:doc:htmlWidget:*",
"build:cssFiles": "cpy ./src/css/**/*.css dist",
"build:doc:htmlWidget:spm": "Rscript -e \"devtools::document('htmlwidget/spm')\"",
"build:doc:htmlWidget:msp": "Rscript -e \"devtools::document('htmlwidget/msp')\"",
"build:jsFiles": "node build.js",
"clean": "npm-run-all clean:*",
"clean:cssFiles": "del-cli dist/*.css",
"clean:cssHtmlWidget:spm": "del-cli htmlwidget/spm/inst/htmlwidgets/lib/scatterPlotMatrix/*.css",
"clean:cssHtmlWidget:msp": "del-cli htmlwidget/spm/inst/htmlwidgets/lib/multipleScatterPlot/*.css",
"clean:jsFiles": "del-cli dist/*.js",
"copy:cssHtmlWidget:spm": "cpy dist/**/scatterPlotMatrix.css htmlwidget/spm/inst/htmlwidgets/lib/scatterPlotMatrix",
"copy:cssHtmlWidget:msp": "cpy dist/**/multipleScatterPlot.css htmlwidget/msp/inst/htmlwidgets/lib/multipleScatterPlot",
"install:htmlWidget:spm": "Rscript -e \"devtools::install_local('htmlwidget/spm',force=TRUE)\"",
"install:htmlWidget:msp": "Rscript -e \"devtools::install_local('htmlwidget/msp',force=TRUE)\"",
"test": "mocha test/mocha/*.js",
"test:eslint": "eslint ./src/Typescript/**/*.ts"
},
"author": {
"name": "David Chazalviel"
},
"license": "MIT",
"bugs": {
"url": "https://ifpen-gitlab.appcollaboratif.fr/detocs/scatterplotmatrix/-/issues"
},
"engines": {
"node": "^20.0.0"
}
}