-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
SHA256 hashes: jupyterlab-rise-0.1.0.tgz: 99cc007b9143c91740c7e53816ebe6ffa43c37e1d081e2c4e507fb826cfec4e2 jupyterlab_rise-0.1.1-py3-none-any.whl: f81723a1e937b8cbad252b5837743618dc05c768e5a28c76d9ef36166e307fdb jupyterlab_rise-0.1.1.tar.gz: db03142fe386c8f07265970e0bbca752d2b851de994062b4e6f98af87893784a
- Loading branch information
1 parent
d64519d
commit ad010e6
Showing
2 changed files
with
111 additions
and
82 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,86 +1,86 @@ | ||
{ | ||
"name": "jupyterlab-rise-meta", | ||
"version": "0.1.0", | ||
"description": "RISE: \"Live\" Reveal.js JupyterLab Slideshow extension.", | ||
"keywords": [ | ||
"jupyter", | ||
"jupyterlab", | ||
"jupyterlab-extension" | ||
], | ||
"private": true, | ||
"files": [], | ||
"workspaces": { | ||
"packages": [ | ||
"app", | ||
"packages/*" | ||
] | ||
}, | ||
"homepage": "https://github.com/jupyterlab-contrib/rise", | ||
"bugs": { | ||
"url": "https://github.com/jupyterlab-contrib/rise/issues" | ||
}, | ||
"license": "BSD-3-Clause", | ||
"author": { | ||
"name": "Frederic Collonval", | ||
"email": "[email protected]" | ||
}, | ||
"contributors": [ | ||
{ | ||
"name": "Thierry Parmentelat", | ||
"url": "https://github.com/parmentelat" | ||
"name": "jupyterlab-rise-meta", | ||
"version": "0.1.1", | ||
"description": "RISE: \"Live\" Reveal.js JupyterLab Slideshow extension.", | ||
"keywords": [ | ||
"jupyter", | ||
"jupyterlab", | ||
"jupyterlab-extension" | ||
], | ||
"private": true, | ||
"files": [], | ||
"workspaces": { | ||
"packages": [ | ||
"app", | ||
"packages/*" | ||
] | ||
}, | ||
{ | ||
"name": "Yiqin Zhang" | ||
"homepage": "https://github.com/jupyterlab-contrib/rise", | ||
"bugs": { | ||
"url": "https://github.com/jupyterlab-contrib/rise/issues" | ||
}, | ||
"license": "BSD-3-Clause", | ||
"author": { | ||
"name": "Frederic Collonval", | ||
"email": "[email protected]" | ||
}, | ||
"contributors": [ | ||
{ | ||
"name": "Thierry Parmentelat", | ||
"url": "https://github.com/parmentelat" | ||
}, | ||
{ | ||
"name": "Yiqin Zhang" | ||
} | ||
], | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/jupyterlab-contrib/rise.git" | ||
}, | ||
"scripts": { | ||
"build": "lerna run build", | ||
"build:prod": "lerna run build:prod", | ||
"clean": "lerna run clean", | ||
"install": "lerna bootstrap", | ||
"eslint": "jlpm eslint:check --fix", | ||
"eslint:check": "eslint . --cache --ext .ts,.tsx", | ||
"lint": "jlpm stylelint && jlpm prettier && jlpm eslint", | ||
"lint:check": "jlpm stylelint:check && jlpm prettier:check && jlpm eslint:check", | ||
"prettier": "jlpm prettier:base --write --list-different", | ||
"prettier:base": "prettier \"**/*{.ts,.tsx,.js,.jsx,.css,.json,.md}\"", | ||
"prettier:check": "jlpm prettier:base --check", | ||
"stylelint": "jlpm stylelint:check --fix", | ||
"stylelint:check": "stylelint --cache \"packages/*/style/**/*.css\"", | ||
"watch": "run-p watch:lib watch:app", | ||
"watch:app": "lerna exec --stream --scope \"rise-app\" yarn watch", | ||
"watch:lib": "lerna exec --stream --scope \"jupyterlab-rise-application\" --scope \"jupyterlab-rise\" yarn watch" | ||
}, | ||
"dependencies": { | ||
"@jupyterlab/application": "^3.1.0", | ||
"@jupyterlab/settingregistry": "^3.1.0" | ||
}, | ||
"devDependencies": { | ||
"@babel/core": "^7.0.0", | ||
"@babel/preset-env": "^7.0.0", | ||
"@jupyterlab/builder": "^3.1.0", | ||
"@jupyterlab/testutils": "^3.0.0", | ||
"@types/jest": "^26.0.0", | ||
"@typescript-eslint/eslint-plugin": "^4.8.1", | ||
"@typescript-eslint/parser": "^4.8.1", | ||
"eslint": "^7.14.0", | ||
"eslint-config-prettier": "^6.15.0", | ||
"eslint-plugin-prettier": "^3.1.4", | ||
"jest": "^26.0.0", | ||
"lerna": "^6.1.0", | ||
"npm-run-all": "^4.1.5", | ||
"prettier": "^2.1.1", | ||
"rimraf": "^3.0.2", | ||
"stylelint": "^14.3.0", | ||
"stylelint-config-prettier": "^9.0.4", | ||
"stylelint-config-recommended": "^6.0.0", | ||
"stylelint-config-standard": "~24.0.0", | ||
"stylelint-prettier": "^2.0.0", | ||
"ts-jest": "^26.0.0", | ||
"typescript": "~4.1.3" | ||
} | ||
], | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/jupyterlab-contrib/rise.git" | ||
}, | ||
"scripts": { | ||
"build": "lerna run build", | ||
"build:prod": "lerna run build:prod", | ||
"clean": "lerna run clean", | ||
"install": "lerna bootstrap", | ||
"eslint": "jlpm eslint:check --fix", | ||
"eslint:check": "eslint . --cache --ext .ts,.tsx", | ||
"lint": "jlpm stylelint && jlpm prettier && jlpm eslint", | ||
"lint:check": "jlpm stylelint:check && jlpm prettier:check && jlpm eslint:check", | ||
"prettier": "jlpm prettier:base --write --list-different", | ||
"prettier:base": "prettier \"**/*{.ts,.tsx,.js,.jsx,.css,.json,.md}\"", | ||
"prettier:check": "jlpm prettier:base --check", | ||
"stylelint": "jlpm stylelint:check --fix", | ||
"stylelint:check": "stylelint --cache \"packages/*/style/**/*.css\"", | ||
"watch": "run-p watch:lib watch:app", | ||
"watch:app": "lerna exec --stream --scope \"rise-app\" yarn watch", | ||
"watch:lib": "lerna exec --stream --scope \"jupyterlab-rise-application\" --scope \"jupyterlab-rise\" yarn watch" | ||
}, | ||
"dependencies": { | ||
"@jupyterlab/application": "^3.1.0", | ||
"@jupyterlab/settingregistry": "^3.1.0" | ||
}, | ||
"devDependencies": { | ||
"@babel/core": "^7.0.0", | ||
"@babel/preset-env": "^7.0.0", | ||
"@jupyterlab/builder": "^3.1.0", | ||
"@jupyterlab/testutils": "^3.0.0", | ||
"@types/jest": "^26.0.0", | ||
"@typescript-eslint/eslint-plugin": "^4.8.1", | ||
"@typescript-eslint/parser": "^4.8.1", | ||
"eslint": "^7.14.0", | ||
"eslint-config-prettier": "^6.15.0", | ||
"eslint-plugin-prettier": "^3.1.4", | ||
"jest": "^26.0.0", | ||
"lerna": "^6.1.0", | ||
"npm-run-all": "^4.1.5", | ||
"prettier": "^2.1.1", | ||
"rimraf": "^3.0.2", | ||
"stylelint": "^14.3.0", | ||
"stylelint-config-prettier": "^9.0.4", | ||
"stylelint-config-recommended": "^6.0.0", | ||
"stylelint-config-standard": "~24.0.0", | ||
"stylelint-prettier": "^2.0.0", | ||
"ts-jest": "^26.0.0", | ||
"typescript": "~4.1.3" | ||
} | ||
} |