notebook/packages/ui-components/package.json

68 lines
1.9 KiB
JSON
Raw Normal View History

2020-12-04 21:15:41 +08:00
{
"name": "@jupyterlab-classic/ui-components",
2021-04-13 20:56:56 +08:00
"version": "0.1.9",
2020-12-04 21:15:41 +08:00
"description": "JupyterLab Classic - UI components",
"homepage": "https://github.com/jtpio/jupyterlab-classic",
"bugs": {
"url": "https://github.com/jtpio/jupyterlab-classic/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/jtpio/jupyterlab-classic.git"
},
"license": "BSD-3-Clause",
"author": "Project Jupyter",
"sideEffects": [
2020-12-10 07:47:58 +08:00
"style/**/*",
"style/index.js"
2020-12-04 21:15:41 +08:00
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"style": "style/index.css",
2020-12-10 07:47:58 +08:00
"styleModule": "style/index.js",
2020-12-04 21:15:41 +08:00
"directories": {
"lib": "lib/"
},
"files": [
"lib/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}",
2020-12-10 07:47:58 +08:00
"style/**/*.{css,eot,gif,html,jpg,json,png,svg,woff2,ttf}",
"style/index.js"
2020-12-04 21:15:41 +08:00
],
"scripts": {
"build": "tsc -b",
"build:test": "tsc --build tsconfig.test.json",
"clean": "rimraf lib && rimraf tsconfig.tsbuildinfo",
"cleansvg": "svgo --config svgo.yaml",
"docs": "typedoc src",
"docs:init": "bash docs/build.sh",
"prepublishOnly": "npm run build",
"test": "jest",
"test:cov": "jest --collect-coverage",
"test:debug": "node --inspect-brk node_modules/.bin/jest --runInBand",
"test:debug:watch": "node --inspect-brk node_modules/.bin/jest --runInBand --watch",
"watch": "tsc -b --watch"
},
"dependencies": {
"@jupyterlab/ui-components": "^3.0.0",
"react": "^17.0.1",
"react-dom": "^17.0.1"
2020-12-04 21:15:41 +08:00
},
"devDependencies": {
"@babel/core": "^7.10.2",
"@babel/preset-env": "^7.10.2",
2020-12-24 17:30:34 +08:00
"@jupyterlab/testutils": "^3.0.0",
2020-12-04 21:15:41 +08:00
"@types/jest": "^26.0.10",
"babel-loader": "^8.0.6",
"jest": "^26.4.2",
"rimraf": "~3.0.0",
"ts-jest": "^26.3.0",
2020-12-19 19:40:28 +08:00
"typescript": "~4.1.3"
2020-12-04 21:15:41 +08:00
},
"publishConfig": {
"access": "public"
},
"jupyterlab": {
"coreDependency": true
2020-12-04 21:15:41 +08:00
}
}