123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105 |
- {
- "name": "yili-dag",
- "version": "0.1.0",
- "description": "A JupyterLab extension.",
- "keywords": [
- "jupyter",
- "jupyterlab",
- "jupyterlab-extension"
- ],
- "homepage": "https://github.com/github_username/yili-dag",
- "bugs": {
- "url": "https://github.com/github_username/yili-dag/issues"
- },
- "repository": {
- "type": "git",
- "url": "https://github.com/github_username/yili-dag.git"
- },
- "license": "MIT",
- "author": "yili",
- "sideEffects": [
- "style/**/*.css",
- "style/index.js"
- ],
- "main": "lib/index.js",
- "types": "lib/index.d.ts",
- "style": "style/index.css",
- "files": [
- "lib/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}",
- "style/**/*.{css,js,eot,gif,html,jpg,json,png,svg,woff2,ttf}",
- "schema/*.json"
- ],
- "scripts": {
- "build": "jlpm build:lib && jlpm build:labextension:dev",
- "build:all": "npm run build",
- "build:labextension": "jupyter labextension build .",
- "build:labextension:dev": "jupyter labextension build --development True .",
- "build:lib": "tsc",
- "build:prod": "jlpm clean && jlpm build:lib && jlpm build:labextension",
- "clean": "jlpm clean:lib",
- "clean:all": "jlpm clean:lib && jlpm clean:labextension && jlpm clean:lintcache",
- "clean:labextension": "rimraf yili-dag/labextension",
- "clean:lib": "rimraf lib tsconfig.tsbuildinfo",
- "clean:lintcache": "rimraf .eslintcache .stylelintcache",
- "eslint": "jlpm eslint:check --fix",
- "eslint:check": "eslint . --cache --ext .ts,.tsx",
- "install:extension": "jlpm build",
- "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 \"style/**/*.css\"",
- "test": "jest --coverage",
- "watch": "run-p watch:src watch:labextension",
- "watch:labextension": "jupyter labextension watch .",
- "watch:src": "tsc -w"
- },
- "dependencies": {
- "@jupyterlab/application": "^3.4.3"
- },
- "devDependencies": {
- "@babel/core": "^7.10.2",
- "@babel/preset-env": "^7.10.2",
- "@jupyterlab/builder": "^3.4.3",
- "@jupyterlab/testutils": "^3.4.3",
- "@types/jest": "^26.0.10",
- "@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.4.2",
- "npm-run-all": "^4.1.5",
- "prettier": "~2.1.1",
- "rimraf": "~3.0.0",
- "stylelint": "^14.3.0",
- "stylelint-config-prettier": "^9.0.3",
- "stylelint-config-recommended": "^6.0.0",
- "stylelint-config-standard": "~24.0.0",
- "stylelint-prettier": "^2.0.0",
- "ts-jest": "^26.3.0",
- "typescript": "~4.1.3"
- },
- "publishConfig": {
- "access": "public"
- },
- "jupyter-releaser": {
- "hooks": {
- "before-build-npm": [
- "python -m pip install jupyterlab~=3.1",
- "jlpm"
- ],
- "before-build-python": [
- "jlpm clean:all"
- ]
- }
- },
- "jupyterlab": {
- "extension": true,
- "outputDir": "yili-dag/labextension",
- "schemaDir": "schema"
- },
- "styleModule": "style/index.js"
- }
|