mirror of
https://github.com/jupyter/notebook.git
synced 2024-12-15 04:00:34 +08:00
fd73915a59
* Update repo links to the jupyterlab org * Fix permissions for the binder workflow * Project Jupyter Contributors * Add community guidelines to the README
75 lines
2.0 KiB
JSON
75 lines
2.0 KiB
JSON
{
|
|
"name": "@retrolab/application",
|
|
"version": "0.3.0-alpha.1",
|
|
"description": "RetroLab - Application",
|
|
"homepage": "https://github.com/jupyterlab/retrolab",
|
|
"bugs": {
|
|
"url": "https://github.com/jupyterlab/retrolab/issues"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/jupyterlab/retrolab.git"
|
|
},
|
|
"license": "BSD-3-Clause",
|
|
"author": "Project Jupyter",
|
|
"sideEffects": [
|
|
"style/*.css",
|
|
"style/index.js"
|
|
],
|
|
"main": "lib/index.js",
|
|
"types": "lib/index.d.ts",
|
|
"style": "style/index.css",
|
|
"directories": {
|
|
"lib": "lib/"
|
|
},
|
|
"files": [
|
|
"lib/*.d.ts",
|
|
"lib/*.js.map",
|
|
"lib/*.js",
|
|
"style/*.css",
|
|
"style/index.js"
|
|
],
|
|
"scripts": {
|
|
"build": "tsc -b",
|
|
"build:test": "tsc --build tsconfig.test.json",
|
|
"clean": "rimraf lib && rimraf tsconfig.tsbuildinfo",
|
|
"docs": "typedoc src",
|
|
"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/application": "^3.1.0-alpha.8",
|
|
"@jupyterlab/coreutils": "^5.1.0-alpha.8",
|
|
"@jupyterlab/docregistry": "^3.1.0-alpha.8",
|
|
"@jupyterlab/rendermime-interfaces": "^3.1.0-alpha.8",
|
|
"@jupyterlab/ui-components": "^3.1.0-alpha.8",
|
|
"@lumino/algorithm": "^1.6.0",
|
|
"@lumino/coreutils": "^1.8.0",
|
|
"@lumino/messaging": "^1.7.0",
|
|
"@lumino/polling": "^1.6.0",
|
|
"@lumino/signaling": "^1.7.0",
|
|
"@lumino/widgets": "^1.23.0"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "^7.11.6",
|
|
"@babel/preset-env": "^7.12.1",
|
|
"@jupyterlab/testutils": "^3.1.0-alpha.8",
|
|
"@types/jest": "^26.0.10",
|
|
"jest": "^26.4.2",
|
|
"rimraf": "~3.0.0",
|
|
"ts-jest": "^26.3.0",
|
|
"typescript": "~4.1.3"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"jupyterlab": {
|
|
"coreDependency": true
|
|
},
|
|
"styleModule": "style/index.js"
|
|
}
|