UNPKG

1.71 kBJSONView Raw
1{
2 "name": "@jupyterlab/settingregistry",
3 "version": "3.5.3",
4 "description": "Settings registry for Jupyterlab",
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 "types": "lib/index.d.ts",
18 "directories": {
19 "lib": "lib/"
20 },
21 "files": [
22 "lib/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}",
23 "schema/*.json",
24 "style/**/*.{css,eot,gif,html,jpg,json,png,svg,woff2,ttf}"
25 ],
26 "scripts": {
27 "build": "tsc -b",
28 "build:test": "tsc --build tsconfig.test.json",
29 "clean": "rimraf lib && rimraf tsconfig.tsbuildinfo",
30 "docs": "typedoc src --tsconfig typedoc-tsconfig.json",
31 "test": "jest",
32 "test:cov": "jest --collect-coverage",
33 "test:debug": "node --inspect-brk node_modules/.bin/jest --runInBand",
34 "test:debug:watch": "node --inspect-brk node_modules/.bin/jest --runInBand --watch",
35 "watch": "tsc -b --watch"
36 },
37 "dependencies": {
38 "@jupyterlab/statedb": "^3.5.3",
39 "@lumino/commands": "^1.19.0",
40 "@lumino/coreutils": "^1.11.0",
41 "@lumino/disposable": "^1.10.0",
42 "@lumino/signaling": "^1.10.0",
43 "ajv": "^6.12.3",
44 "json5": "^2.1.1"
45 },
46 "devDependencies": {
47 "@jupyterlab/testutils": "^3.5.3",
48 "@types/jest": "^26.0.10",
49 "@types/json5": "^0.0.30",
50 "jest": "^26.4.2",
51 "rimraf": "~3.0.0",
52 "ts-jest": "^26.3.0",
53 "typescript": "~4.1.3"
54 },
55 "publishConfig": {
56 "access": "public"
57 }
58}