UNPKG

3.81 kBJSONView Raw
1{
2 "name": "@lumino/widgets",
3 "version": "1.32.1",
4 "description": "Lumino Widgets",
5 "homepage": "https://github.com/jupyterlab/lumino",
6 "bugs": {
7 "url": "https://github.com/jupyterlab/lumino/issues"
8 },
9 "repository": {
10 "type": "git",
11 "url": "https://github.com/jupyterlab/lumino.git"
12 },
13 "license": "BSD-3-Clause",
14 "author": "S. Chris Colbert <sccolbert@gmail.com>",
15 "contributors": [
16 "A. Darian <git@darian.af>",
17 "Dave Willmer <dave.willmer@gmail.com>",
18 "S. Chris Colbert <sccolbert@gmail.com>",
19 "Steven Silvester <steven.silvester@gmail.com>"
20 ],
21 "main": "dist/index.js",
22 "jsdelivr": "dist/index.min.js",
23 "unpkg": "dist/index.min.js",
24 "module": "dist/index.es6",
25 "types": "types/index.d.ts",
26 "style": "style/index.css",
27 "files": [
28 "dist/*",
29 "src/*",
30 "types/*",
31 "style/*.css",
32 "style/index.js"
33 ],
34 "scripts": {
35 "api": "api-extractor run --local --verbose",
36 "build": "npm run build:src && rollup -c",
37 "build:src": "tsc --build",
38 "build:test": "tsc --build tests && cd tests && webpack",
39 "clean": "rimraf ./lib && rimraf *.tsbuildinfo && rimraf ./types && rimraf ./dist",
40 "clean:test": "rimraf tests/build",
41 "docs": "typedoc --options tdoptions.json src",
42 "minimize": "terser dist/index.js -c -m --source-map \"content='dist/index.js.map',url='index.min.js.map'\" -o dist/index.min.js",
43 "test": "npm run test:firefox-headless",
44 "test:chrome": "npm run test:nobrowser -- --browsers=Chrome",
45 "test:chrome-headless": "npm run test:nobrowser -- --browsers=ChromeHeadless",
46 "test:debug": "npm run test:debug:firefox",
47 "test:debug:chrome": "npm run test:debug:nobrowser -- --browsers=Chrome",
48 "test:debug:chrome-headless": "npm run test:debug:nobrowser -- --browsers=ChromeHeadless",
49 "test:debug:firefox": "npm run test:debug:nobrowser -- --browsers=Firefox",
50 "test:debug:firefox-headless": "npm run test:debug:nobrowser -- --browsers=FirefoxHeadless",
51 "test:debug:nobrowser": "cd tests && karma start --singleRun=false --debug=true --browserNoActivityTimeout=10000000 --browserDisconnectTimeout=10000000",
52 "test:firefox": "npm run test:nobrowser -- --browsers=Firefox",
53 "test:firefox-headless": "npm run test:nobrowser -- --browsers=FirefoxHeadless",
54 "test:ie": "npm run test:nobrowser -- --browsers=IE",
55 "test:nobrowser": "cd tests && karma start",
56 "watch": "tsc --build --watch"
57 },
58 "dependencies": {
59 "@lumino/algorithm": "^1.9.1",
60 "@lumino/commands": "^1.20.0",
61 "@lumino/coreutils": "^1.12.0",
62 "@lumino/disposable": "^1.10.1",
63 "@lumino/domutils": "^1.8.1",
64 "@lumino/dragdrop": "^1.14.0",
65 "@lumino/keyboard": "^1.8.1",
66 "@lumino/messaging": "^1.10.1",
67 "@lumino/properties": "^1.8.1",
68 "@lumino/signaling": "^1.10.1",
69 "@lumino/virtualdom": "^1.14.1"
70 },
71 "devDependencies": {
72 "@microsoft/api-extractor": "^7.6.0",
73 "@types/chai": "^3.4.35",
74 "@types/mocha": "^2.2.39",
75 "chai": "^4.3.4",
76 "css-loader": "^3.4.0",
77 "downlevel-dts": "^0.4.0",
78 "es6-promise": "^4.0.5",
79 "karma": "^6.3.4",
80 "karma-chrome-launcher": "^3.1.0",
81 "karma-firefox-launcher": "^2.1.1",
82 "karma-ie-launcher": "^1.0.0",
83 "karma-mocha": "^2.0.1",
84 "karma-mocha-reporter": "^2.2.5",
85 "mocha": "^9.0.3",
86 "rimraf": "^3.0.2",
87 "rollup": "^2.56.0",
88 "rollup-plugin-node-resolve": "^5.2.0",
89 "rollup-plugin-postcss": "^4.0.0",
90 "rollup-plugin-sourcemaps": "^0.6.3",
91 "simulate-event": "^1.4.0",
92 "style-loader": "^1.0.2",
93 "terser": "^5.7.1",
94 "tslib": "^2.3.0",
95 "typedoc": "~0.15.0",
96 "typescript": "~3.6.0",
97 "webpack": "^4.41.3",
98 "webpack-cli": "^3.3.10"
99 },
100 "publishConfig": {
101 "access": "public"
102 },
103 "styleModule": "style/index.js"
104}