@ramencloud/scguard_widgets 0.1.8-dev13.g56a9b27 → 0.1.9-dev6.g9999b7d
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +1 -1
- package/package.json +9 -16
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ramencloud/scguard_widgets",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.9-dev6.g9999b7d",
|
|
4
4
|
"description": "A dotdata scguard widget",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"dotdata",
|
|
@@ -26,26 +26,19 @@
|
|
|
26
26
|
"url": "https://github.com/ramencloud/scorecard-guard"
|
|
27
27
|
},
|
|
28
28
|
"scripts": {
|
|
29
|
-
"build": "yarn run
|
|
30
|
-
"build:labextension": "yarn run
|
|
31
|
-
"build:nbextension": "
|
|
32
|
-
"build:package": "
|
|
29
|
+
"build": "yarn run build:labextension && yarn run build:nbextension",
|
|
30
|
+
"build:labextension": "yarn run build:lib && yarn run labextension",
|
|
31
|
+
"build:nbextension": "webpack --mode=production --config webpack.config.js --config-name notebook-package notebook-entry-file",
|
|
32
|
+
"build:npm-package": "webpack --mode=production --config webpack.config.js --config-name npm-package",
|
|
33
33
|
"build:lib": "tsc --build && tsc-alias",
|
|
34
|
-
"build:test": "tsc --build tsconfig.test.json",
|
|
35
34
|
"labextension": "jupyter-labextension build . && touch scguard_widgets/labextension/static/__init__.py && touch scguard_widgets/labextension/__init__.py",
|
|
36
|
-
"nbextension": "webpack --mode=production --config webpack.config.js --config-name notebook-package notebook-entry-file",
|
|
37
|
-
"package": "webpack --mode=production --config webpack.config.js --config-name npm-package",
|
|
38
35
|
"clean": "yarn run clean:lib && yarn run clean:nbextension && yarn run clean:labextension",
|
|
39
36
|
"clean:lib": "yarn run -T rimraf lib && yarn run -T rimraf tsconfig.tsbuildinfo && yarn run -T rimraf dist",
|
|
40
37
|
"clean:labextension": "yarn run -T rimraf scguard_widgets/labextension",
|
|
41
38
|
"clean:nbextension": "yarn run -T rimraf scguard_widgets/nbextension/*.js.* && yarn run -T rimraf scguard_widgets/nbextension/*.js",
|
|
42
|
-
"
|
|
43
|
-
"lint:check": "eslint . --ext .ts,.tsx",
|
|
44
|
-
"prepack": "yarn build:package",
|
|
45
|
-
"npm-publish": "npm publish",
|
|
46
|
-
"test": "yarn build:test && yarn run -T test apps/scguard_widgets",
|
|
47
|
-
"test:watch": "yarn run -T concurrently \"yarn build:test -w\" \"yarn run -T test:watch apps/scguard_widgets\"",
|
|
39
|
+
"test": "yarn run -T test apps/scguard_widgets",
|
|
48
40
|
"format": "prettier --write \"src/**/*.ts\"",
|
|
41
|
+
"lint": "eslint . --ext .ts,.tsx --fix",
|
|
49
42
|
"watch": "yarn run build:lib && npm-run-all -p 'watch:*'",
|
|
50
43
|
"watch:lib": "yarn run -T concurrently \"tsc -b -w\" \"tsc-alias -w\"",
|
|
51
44
|
"watch:labextension": "jupyter-labextension build --development True . && jupyter-labextension watch ."
|
|
@@ -71,13 +64,13 @@
|
|
|
71
64
|
"devDependencies": {
|
|
72
65
|
"@dotdata/typescript-config": "workspace:^",
|
|
73
66
|
"@jupyter-widgets/base-manager": "^1.0.12",
|
|
74
|
-
"@jupyterlab/builder": "^
|
|
67
|
+
"@jupyterlab/builder": "^4.5.6",
|
|
75
68
|
"@types/webpack-env": "^1.18.0",
|
|
76
69
|
"acorn": "^8.8.2",
|
|
77
70
|
"css-loader": "^6.7.3",
|
|
78
71
|
"file-loader": "^6.2.0",
|
|
79
72
|
"fs-extra": "^11.1.0",
|
|
80
|
-
"happy-dom": "^20.
|
|
73
|
+
"happy-dom": "^20.8.8",
|
|
81
74
|
"identity-obj-proxy": "^3.0.0",
|
|
82
75
|
"mkdirp": "^2.1.3",
|
|
83
76
|
"npm-run-all": "^4.1.5",
|