-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
85 lines (85 loc) · 3.18 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "@upsetjs/r",
"description": "UpSet.js is a re-implementation of UpSetR to create interactive set visualizations for more than three sets",
"version": "1.11.1",
"private": true,
"license": "SEE LICENSE in LICENSE",
"author": {
"name": "Samuel Gratzl",
"email": "sam@sgratzl.com",
"url": "https://wwww.sgratzl.com"
},
"homepage": "https://github.com/upsetjs/upsetjs_r",
"bugs": {
"url": "https://github.com/upsetjs/upsetjs_r/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/sgratzl/upsetjs_r.git"
},
"scripts": {
"lint": "yarn run eslint && yarn run prettier",
"fix": "yarn run eslint:fix && yarn run prettier:write",
"prettier:impl": "prettier \"*.md\" \"*.json\" .eslintrc.js \"*.yml\" \"webpack*\" .prettierrc.js \"{js,types,scripts,.github}/**\" \"binder/*.yml\" ",
"prettier:write": "yarn run prettier:impl --write",
"prettier": "yarn run prettier:impl --check",
"eslint": "eslint js --ext .ts,.tsx",
"eslint:fix": "yarn run eslint --fix",
"clean": "rimraf \"inst/htmlwidgets/upsetjs.js*\"",
"build:dev": "webpack-cli --mode development --devtool source-map",
"build": "yarn run clean && webpack-cli --mode production",
"test:r": "Rscript -e 'devtools::test()'",
"check:r": "rimraf node_modules && Rscript -e 'devtools::check(error_on = \"error\")'",
"style:r": "Rscript -e 'styler::style_pkg()'",
"lint:r": "Rscript -e 'devtools::load_all();lintr::lint_package()'",
"clean:r": "rimraf \"*.tar.gz\" check man doc docs NAMESPACE \"vignettes/*.R\" \"vignettes/*.html\" upsetjs.Rcheck Meta node_modules",
"build:r": "yarn run clean:r && Rscript -e 'devtools::document()' -e 'devtools::build(path=\".\")' -e 'file.copy(list.files(pattern=\"upsetjs_.*.tar.gz\"), \"upsetjs.tar.gz\")'",
"docs:r": "Rscript -e 'devtools::build_site()'",
"release": "release-it --disable-metrics"
},
"browserslist": [
"ie 11"
],
"devDependencies": {
"@babel/core": "^7.17.10",
"@babel/preset-env": "^7.17.10",
"@typescript-eslint/eslint-plugin": "^5.23.0",
"@typescript-eslint/parser": "^5.23.0",
"@yarnpkg/sdks": "^3.0.0-rc.5",
"babel-loader": "^8.2.5",
"eslint": "^8.15.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.5.0",
"html-webpack-plugin": "^5.5.0",
"pnp-webpack-plugin": "^1.7.0",
"prettier": "^2.6.2",
"react": "^18.1",
"release-it": "^14.14.3",
"rimraf": "^3.0.2",
"ts-loader": "^9.3.0",
"tslib": "^2.4.0",
"typescript": "^4.6.4",
"webpack": "^5.72.1",
"webpack-cli": "^4.9.2"
},
"dependencies": {
"@types/react": "^18.0",
"@upsetjs/bundle": "~1.11.0",
"@upsetjs/react": "~1.11.0",
"@upsetjs/venn.js": "^1.4.2",
"core-js": "^2",
"element-closest-polyfill": "^1.0.5",
"regenerator-runtime": "^0.13.9",
"use-resize-observer": "^8.0.0"
},
"peerDependencies": {
"react": "^18.1"
},
"packageManager": "yarn@3.2.0"
}