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