UNPKG

1.79 kBJSONView Raw
1{
2 "name": "@jupyterlab/coreutils",
3 "version": "6.2.4",
4 "description": "JupyterLab - Core Utilities",
5 "homepage": "https://github.com/jupyterlab/jupyterlab",
6 "bugs": {
7 "url": "https://github.com/jupyterlab/jupyterlab/issues"
8 },
9 "repository": {
10 "type": "git",
11 "url": "https://github.com/jupyterlab/jupyterlab.git"
12 },
13 "license": "BSD-3-Clause",
14 "author": "Project Jupyter",
15 "sideEffects": false,
16 "main": "lib/index.js",
17 "browser": {
18 "path": "path-browserify"
19 },
20 "types": "lib/index.d.ts",
21 "directories": {
22 "lib": "lib/"
23 },
24 "files": [
25 "lib/*.d.ts",
26 "lib/*.js.map",
27 "lib/*.js",
28 "lib/*.json",
29 "src/**/*.{ts,tsx}"
30 ],
31 "scripts": {
32 "build": "tsc -b",
33 "build:test": "tsc --build tsconfig.test.json",
34 "clean": "rimraf lib && rimraf tsconfig.tsbuildinfo",
35 "test": "jest",
36 "test:cov": "jest --collect-coverage",
37 "test:debug": "node --inspect-brk ../../node_modules/.bin/jest --runInBand",
38 "test:debug:watch": "node --inspect-brk ../../node_modules/.bin/jest --runInBand --watch",
39 "watch": "tsc -b --watch"
40 },
41 "dependencies": {
42 "@lumino/coreutils": "^2.1.2",
43 "@lumino/disposable": "^2.1.2",
44 "@lumino/signaling": "^2.1.2",
45 "minimist": "~1.2.0",
46 "path-browserify": "^1.0.0",
47 "url-parse": "~1.5.4"
48 },
49 "devDependencies": {
50 "@babel/core": "^7.10.2",
51 "@babel/preset-env": "^7.10.2",
52 "@types/jest": "^29.2.0",
53 "@types/minimist": "^1.2.0",
54 "@types/url-parse": "^1.4.3",
55 "jest": "^29.2.0",
56 "jest-environment-jsdom": "^29.3.0",
57 "jest-junit": "^15.0.0",
58 "rimraf": "~5.0.5",
59 "ts-jest": "^29.1.0",
60 "typescript": "~5.1.6"
61 },
62 "publishConfig": {
63 "access": "public"
64 },
65 "jupyterlab": {
66 "coreDependency": true
67 }
68}