|
16 | 16 | "url": "https://github.com/matplotlib/jupyter-matplotlib.git"
|
17 | 17 | },
|
18 | 18 | "scripts": {
|
19 |
| - "build": "yarn run build:lib && yarn run build:nbextension && yarn run build:labextension:dev", |
20 |
| - "build:prod": "yarn run build:lib && yarn run build:nbextension && yarn run build:labextension", |
| 19 | + "build": "jlpm build:lib && jlpm build:nbextension && jlpm build:labextension:dev", |
| 20 | + "build:prod": "jlpm build:lib && jlpm build:nbextension && jlpm build:labextension", |
21 | 21 | "build:labextension": "jupyter labextension build .",
|
22 | 22 | "build:labextension:dev": "jupyter labextension build --development True .",
|
23 | 23 | "build:lib": "tsc",
|
24 | 24 | "build:nbextension": "webpack --mode=production",
|
25 |
| - "clean": "yarn run clean:lib && yarn run clean:nbextension && yarn run clean:labextension", |
| 25 | + "clean": "jlpm clean:lib && jlpm clean:nbextension && jlpm clean:labextension", |
26 | 26 | "clean:lib": "rimraf lib",
|
27 | 27 | "clean:labextension": "rimraf ipympl/labextension",
|
28 | 28 | "clean:nbextension": "rimraf ipympl/nbextension/static/index.js",
|
29 |
| - "prepack": "yarn run build:lib", |
| 29 | + "prepack": "jlpm build:lib", |
30 | 30 | "test": "jest",
|
31 | 31 | "watch": "npm-run-all -p watch:*",
|
32 | 32 | "watch:lib": "tsc -w",
|
33 | 33 | "watch:nbextension": "webpack --watch --mode=development",
|
34 | 34 | "watch:labextension": "jupyter labextension watch .",
|
35 | 35 | "eslint": "eslint . --fix --ignore-path .eslintignore --ext .ts",
|
36 | 36 | "eslint:check": "eslint . --ignore-path .eslintignore --ext .ts",
|
37 |
| - "lint": "yarn run prettier && yarn run eslint", |
38 |
| - "lint:check": "yarn run prettier:check && yarn run eslint:check", |
39 |
| - "prepublish": "yarn run clean && yarn run build", |
| 37 | + "lint": "jlpm prettier && jlpm eslint", |
| 38 | + "lint:check": "jlpm prettier:check && jlpm eslint:check", |
| 39 | + "prepublish": "jlpm clean && jlpm build", |
40 | 40 | "prettier": "prettier --ignore-path .eslintignore --write \"**/*{.ts,.css,.json}\"",
|
41 | 41 | "prettier:check": "prettier --check --ignore-path .eslintignore \"**/*{.ts,.css,.json}\""
|
42 | 42 | },
|
|
57 | 57 | "@phosphor/application": "^1.6.0",
|
58 | 58 | "@phosphor/widgets": "^1.6.0",
|
59 | 59 | "@types/jest": "^26.0.0",
|
| 60 | + "@types/lodash": "^4.14.202", |
60 | 61 | "@types/webpack-env": "^1.13.6",
|
61 | 62 | "@typescript-eslint/eslint-plugin": "^3.6.0",
|
62 | 63 | "@typescript-eslint/parser": "^3.6.0",
|
|
76 | 77 | "style-loader": "^1.0.0",
|
77 | 78 | "ts-jest": "^26.0.0",
|
78 | 79 | "ts-loader": "^8.0.0",
|
79 |
| - "typescript": "~4.1.3", |
| 80 | + "typescript": "^4.0.0", |
80 | 81 | "webpack": "^5.61.0",
|
81 | 82 | "webpack-cli": "^4.0.0"
|
82 | 83 | },
|
83 | 84 | "dependencies": {
|
84 | 85 | "@jupyter-widgets/base": "^2 || ^3 || ^4 || ^5 || ^6",
|
85 | 86 | "@types/node": "^14.14.35",
|
| 87 | + "crypto": "1.0.1", |
86 | 88 | "lodash": "^4.17.21"
|
87 | 89 | },
|
88 | 90 | "keywords": [
|
|
0 commit comments