-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
108 lines (108 loc) · 4 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "@upsetjs/jupyter_widget",
"version": "1.9.0",
"description": "UpSet.js is a re-implementation of UpSetR to create interactive set visualizations for more than three sets",
"license": "SEE LICENSE IN LICENSE.txt",
"author": {
"name": "Samuel Gratzl",
"email": "sam@sgratzl.com",
"url": "https://wwww.sgratzl.com"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"jupyter",
"jupyterlab",
"juptyerlab notebook",
"jupyterlab-extension",
"widgets"
],
"homepage": "https://github.com/upsetjs/upsetjs_jupyter_widget",
"bugs": {
"url": "https://github.com/upsetjs/upsetjs_jupyter_widget/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/upsetjs/upsetjs_jupyter_widget"
},
"files": [
"lib/**/*.js",
"dist/*.js",
"css/*.css"
],
"main": "lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"clean": "rimraf dist build lib upsetjs_jupyter_widget/labextension \"upsetjs_jupyter_widget/nbextension/static/index*\"",
"build": "yarn run build:lib && yarn run build:nbextension",
"build:labextension": "mkdirp upsetjs_jupyter_widget/labextension && cd upsetjs_jupyter_widget/labextension && npm pack ../..",
"build:lib": "yarn run clean && tsc -p tsconfig.build.json",
"build:nbextension": "webpack --mode production",
"build:all": "yarn run build:lib && yarn run build:labextension && yarn run build:nbextension",
"build:p": "python setup.py clean sdist bdist_wheel",
"_prepack": "yarn run build:lib",
"lint": "yarn run eslint && yarn run prettier:check",
"fix": "yarn run eslint:fix && yarn run prettier:write",
"prettier": "prettier \"*.{md,json,yml}\" .eslintrc.js webpack* .prettierrc.js \"{src,types,scripts,.github}/**\" \"{r_package,binder}/*.yml\"",
"prettier:write": "yarn run prettier --write",
"prettier:check": "yarn run prettier --check",
"black": "black --target-version=py38 upsetjs_jupyter_widget setup.py setupbase.py",
"eslint": "eslint src --ext .ts,.tsx",
"eslint:fix": "yarn run eslint --fix",
"lint:p": "mypy -p upsetjs_jupyter_widget && yarn run black --check && pylint upsetjs_jupyter_widget",
"fix:p": "yarn run black",
"test:p": "pytest",
"test:p:ci": "pytest --doctest-modules --junitxml=junit/test-results.xml --cov=com --cov-report=xml --cov-report=html",
"nbconvert": "jupyter nbconvert examples/*.ipynb --to html",
"test": "jest --passWithNoTests",
"watch": "npm-run-all -p 'watch:*'",
"watch:lib": "tsc -w -p tsconfig.build.json",
"watch:nbextension": "webpack -w --mode development --devtool sourcemap",
"docs:p": "cd docs && sphinx-build -b html \"source\" \"build\"",
"release": "release-it --disable-metrics --npm.skipChecks"
},
"dependencies": {
"@jupyter-widgets/base": ">=2",
"@upsetjs/bundle": "~1.9.1",
"@upsetjs/venn.js": "^1.4.1"
},
"devDependencies": {
"@jupyterlab/services": "^6.0.3",
"@phosphor/application": "^1.7.3",
"@phosphor/widgets": "^1.9.3",
"@types/backbone": "^1.4.10",
"@types/jest": "^26.0.20",
"@typescript-eslint/eslint-plugin": "^4.15.1",
"@typescript-eslint/parser": "^4.15.1",
"@yarnpkg/pnpify": "^2.4.0",
"babel-eslint": "^10.1.0",
"backbone": "^1.4.0",
"eslint": "^7.20.0",
"eslint-config-prettier": "^7.2.0",
"eslint-config-react-app": "^6.0.0",
"eslint-plugin-flowtype": "^5.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"jest": "^26.6.3",
"jest-config": "^26.6.3",
"mkdirp": "^1.0.4",
"npm-run-all": "^4.1.5",
"pnp-webpack-plugin": "^1.6.4",
"prettier": "^2.2.1",
"release-it": "^14.4.0",
"rimraf": "^3.0.2",
"ts-jest": "26.5.1",
"ts-loader": "^8.0.17",
"tslib": "^2.1.0",
"typescript": "^4.1.5",
"webpack": "^5.22.0",
"webpack-cli": "^4.5.0"
},
"jupyterlab": {
"extension": "lib/plugin"
}
}