UNPKG

2.7 kBJSONView Raw
1{
2 "name": "@lumino/messaging",
3 "version": "2.0.0",
4 "description": "Lumino Message Passing",
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": "Project Jupyter",
15 "main": "dist/index.js",
16 "jsdelivr": "dist/index.min.js",
17 "unpkg": "dist/index.min.js",
18 "module": "dist/index.es6",
19 "types": "types/index.d.ts",
20 "files": [
21 "dist/*",
22 "src/*",
23 "types/*"
24 ],
25 "scripts": {
26 "api": "api-extractor run --local --verbose",
27 "build": "npm run build:src && rollup -c",
28 "build:src": "tsc --build",
29 "build:test": "npm run clean:test && tsc --build tests && cd tests && rollup -c",
30 "clean": "rimraf ./lib && rimraf *.tsbuildinfo && rimraf ./types && rimraf ./dist",
31 "clean:test": "rimraf tests/lib tests/tsconfig.tsbuildinfo",
32 "minimize": "terser dist/index.js -c -m --source-map \"content='dist/index.js.map',url='index.min.js.map'\" -o dist/index.min.js",
33 "test": "npm run test:firefox-headless",
34 "test:chrome": "cd tests && karma start --browsers=Chrome",
35 "test:chrome-headless": "cd tests && karma start --browsers=ChromeHeadless",
36 "test:firefox": "cd tests && karma start --browsers=Firefox",
37 "test:firefox-headless": "cd tests && karma start --browsers=FirefoxHeadless",
38 "test:webkit": "cd tests && karma start --browsers=Webkit",
39 "test:webkit-headless": "cd tests && karma start --browsers=WebkitHeadless",
40 "watch": "tsc --build --watch"
41 },
42 "typedoc": {
43 "entryPoint": "./src/index.ts",
44 "displayName": "messaging"
45 },
46 "dependencies": {
47 "@lumino/algorithm": "^2.0.0",
48 "@lumino/collections": "^2.0.0"
49 },
50 "devDependencies": {
51 "@lumino/buildutils": "^2.0.0",
52 "@microsoft/api-extractor": "^7.6.0",
53 "@rollup/plugin-commonjs": "^24.0.0",
54 "@rollup/plugin-node-resolve": "^15.0.1",
55 "@types/chai": "^3.4.35",
56 "@types/mocha": "^2.2.39",
57 "@types/node": "^12.12.17",
58 "chai": "^4.3.4",
59 "karma": "^6.3.4",
60 "karma-chrome-launcher": "^3.1.0",
61 "karma-firefox-launcher": "^2.1.1",
62 "karma-mocha": "^2.0.1",
63 "karma-mocha-reporter": "^2.2.5",
64 "karma-webkit-launcher": "^1.0.2",
65 "mocha": "^9.0.3",
66 "playwright": "^1.29.0",
67 "postcss": "^8.4.14",
68 "rimraf": "^3.0.2",
69 "rollup": "^3.9.1",
70 "rollup-plugin-postcss": "^4.0.2",
71 "rollup-plugin-sourcemaps": "^0.6.3",
72 "terser": "^5.7.1",
73 "tslib": "^2.4.0",
74 "typedoc": "^0.23.25",
75 "typescript": "~4.9.4"
76 },
77 "publishConfig": {
78 "access": "public"
79 }
80}