UNPKG

@lumino/coreutils

Version:
78 lines (77 loc) 2.64 kB
{ "name": "@lumino/coreutils", "version": "2.1.1", "description": "Lumino Core Utilities", "homepage": "https://github.com/jupyterlab/lumino", "bugs": { "url": "https://github.com/jupyterlab/lumino/issues" }, "repository": { "type": "git", "url": "https://github.com/jupyterlab/lumino.git" }, "license": "BSD-3-Clause", "author": "Project Jupyter", "main": "dist/index.node.js", "browser": "dist/index.js", "jsdelivr": "dist/index.min.js", "unpkg": "dist/index.min.js", "module": "dist/index.es6", "module-node": "dist/index.node.es6", "types": "types/index.d.ts", "files": [ "dist/*", "src/*", "types/*" ], "scripts": { "api": "api-extractor run --local --verbose", "build": "npm run build:src && rollup -c", "build:src": "tsc --build", "build:test": "npm run clean:test && tsc --build tests && cd tests && rollup -c", "clean": "rimraf ./lib && rimraf *.tsbuildinfo && rimraf ./types && rimraf ./dist", "clean:test": "rimraf tests/lib tests/tsconfig.tsbuildinfo", "minimize": "terser dist/index.js -c -m --source-map \"content='dist/index.js.map',url='index.min.js.map'\" -o dist/index.min.js", "test": "npm run test:firefox-headless", "test:chrome": "cd tests && karma start --browsers=Chrome", "test:chrome-headless": "cd tests && karma start --browsers=ChromeHeadless", "test:firefox": "cd tests && karma start --browsers=Firefox", "test:firefox-headless": "cd tests && karma start --browsers=FirefoxHeadless", "test:webkit": "cd tests && karma start --browsers=Webkit", "test:webkit-headless": "cd tests && karma start --browsers=WebkitHeadless", "watch": "tsc --build --watch" }, "typedoc": { "entryPoint": "./src/index.ts", "displayName": "coreutils" }, "devDependencies": { "@lumino/buildutils": "^2.0.0", "@microsoft/api-extractor": "^7.6.0", "@rollup/plugin-commonjs": "^24.0.0", "@rollup/plugin-node-resolve": "^15.0.1", "@types/chai": "^3.4.35", "@types/mocha": "^2.2.39", "chai": "^4.3.4", "karma": "^6.3.4", "karma-chrome-launcher": "^3.1.0", "karma-firefox-launcher": "^2.1.1", "karma-mocha": "^2.0.1", "karma-mocha-reporter": "^2.2.5", "karma-webkit-launcher": "^1.0.2", "mocha": "^9.0.3", "playwright": "^1.29.0", "postcss": "^8.4.14", "rimraf": "^3.0.2", "rollup": "^3.9.1", "rollup-plugin-postcss": "^4.0.2", "rollup-plugin-sourcemaps": "^0.6.3", "terser": "^5.7.1", "tslib": "^2.4.0", "typedoc": "^0.23.25", "typescript": "~4.9.4" }, "publishConfig": { "access": "public" } }