|
1 | 1 | { |
2 | | - "name": "jupyterlab-open-url-parameter", |
3 | | - "version": "0.0.1", |
4 | | - "description": "JupyterLab extension to open files passed via a URL parameter", |
5 | | - "keywords": [ |
6 | | - "jupyter", |
7 | | - "jupyterlab", |
8 | | - "jupyterlab-extension" |
9 | | - ], |
10 | | - "homepage": "https://github.com/jupyterlab-contrib/jupyterlab-open-url-parameter", |
11 | | - "bugs": { |
12 | | - "url": "https://github.com/jupyterlab-contrib/jupyterlab-open-url-parameter/issues" |
13 | | - }, |
14 | | - "license": "BSD-3-Clause", |
15 | | - "author": { |
16 | | - "name": "JupyterLab Contrib Team", |
17 | | - "email": "" |
18 | | - }, |
19 | | - "files": [ |
20 | | - "lib/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}", |
21 | | - "style/**/*.{css,js,eot,gif,html,jpg,json,png,svg,woff2,ttf}" |
22 | | - ], |
23 | | - "main": "lib/index.js", |
24 | | - "types": "lib/index.d.ts", |
25 | | - "style": "style/index.css", |
26 | | - "repository": { |
27 | | - "type": "git", |
28 | | - "url": "https://github.com/jupyterlab-contrib/jupyterlab-open-url-parameter.git" |
29 | | - }, |
30 | | - "scripts": { |
31 | | - "build": "jlpm build:lib && jlpm build:labextension:dev", |
32 | | - "build:prod": "jlpm clean && jlpm build:lib:prod && jlpm build:labextension", |
33 | | - "build:labextension": "jupyter labextension build .", |
34 | | - "build:labextension:dev": "jupyter labextension build --development True .", |
35 | | - "build:lib": "tsc --sourceMap", |
36 | | - "build:lib:prod": "tsc", |
37 | | - "clean": "jlpm clean:lib", |
38 | | - "clean:lib": "rimraf lib tsconfig.tsbuildinfo", |
39 | | - "clean:lintcache": "rimraf .eslintcache .stylelintcache", |
40 | | - "clean:labextension": "rimraf jupyterlab_open_url_parameter/labextension jupyterlab_open_url_parameter/_version.py", |
41 | | - "clean:all": "jlpm clean:lib && jlpm clean:labextension && jlpm clean:lintcache", |
42 | | - "eslint": "jlpm eslint:check --fix", |
43 | | - "eslint:check": "eslint . --cache --ext .ts,.tsx", |
44 | | - "install:extension": "jlpm build", |
45 | | - "lint": "jlpm stylelint && jlpm prettier && jlpm eslint", |
46 | | - "lint:check": "jlpm stylelint:check && jlpm prettier:check && jlpm eslint:check", |
47 | | - "prettier": "jlpm prettier:base --write --list-different", |
48 | | - "prettier:base": "prettier \"**/*{.ts,.tsx,.js,.jsx,.css,.json,.md}\"", |
49 | | - "prettier:check": "jlpm prettier:base --check", |
50 | | - "stylelint": "jlpm stylelint:check --fix", |
51 | | - "stylelint:check": "stylelint --cache \"style/**/*.css\"", |
52 | | - "watch": "run-p watch:src watch:labextension", |
53 | | - "watch:src": "tsc -w", |
54 | | - "watch:labextension": "jupyter labextension watch ." |
55 | | - }, |
56 | | - "dependencies": { |
57 | | - "@jupyterlab/application": "^3.1.0" |
58 | | - }, |
59 | | - "devDependencies": { |
60 | | - "@jupyterlab/builder": "^3.1.0", |
61 | | - "@typescript-eslint/eslint-plugin": "^4.8.1", |
62 | | - "@typescript-eslint/parser": "^4.8.1", |
63 | | - "eslint": "^7.14.0", |
64 | | - "eslint-config-prettier": "^6.15.0", |
65 | | - "eslint-plugin-prettier": "^3.1.4", |
66 | | - "npm-run-all": "^4.1.5", |
67 | | - "prettier": "^2.1.1", |
68 | | - "rimraf": "^3.0.2", |
69 | | - "stylelint": "^14.3.0", |
70 | | - "stylelint-config-prettier": "^9.0.4", |
71 | | - "stylelint-config-recommended": "^6.0.0", |
72 | | - "stylelint-config-standard": "~24.0.0", |
73 | | - "stylelint-prettier": "^2.0.0", |
74 | | - "typescript": "~4.1.3" |
75 | | - }, |
76 | | - "sideEffects": [ |
77 | | - "style/*.css", |
78 | | - "style/index.js" |
79 | | - ], |
80 | | - "styleModule": "style/index.js", |
81 | | - "publishConfig": { |
82 | | - "access": "public" |
83 | | - }, |
84 | | - "jupyterlab": { |
85 | | - "extension": true, |
86 | | - "outputDir": "jupyterlab_open_url_parameter/labextension" |
87 | | - } |
| 2 | + "name": "jupyterlab-open-url-parameter", |
| 3 | + "version": "0.1.0", |
| 4 | + "description": "JupyterLab extension to open files passed via a URL parameter", |
| 5 | + "keywords": [ |
| 6 | + "jupyter", |
| 7 | + "jupyterlab", |
| 8 | + "jupyterlab-extension" |
| 9 | + ], |
| 10 | + "homepage": "https://github.com/jupyterlab-contrib/jupyterlab-open-url-parameter", |
| 11 | + "bugs": { |
| 12 | + "url": "https://github.com/jupyterlab-contrib/jupyterlab-open-url-parameter/issues" |
| 13 | + }, |
| 14 | + "license": "BSD-3-Clause", |
| 15 | + "author": { |
| 16 | + "name": "JupyterLab Contrib Team", |
| 17 | + "email": "" |
| 18 | + }, |
| 19 | + "files": [ |
| 20 | + "lib/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}", |
| 21 | + "style/**/*.{css,js,eot,gif,html,jpg,json,png,svg,woff2,ttf}" |
| 22 | + ], |
| 23 | + "main": "lib/index.js", |
| 24 | + "types": "lib/index.d.ts", |
| 25 | + "style": "style/index.css", |
| 26 | + "repository": { |
| 27 | + "type": "git", |
| 28 | + "url": "https://github.com/jupyterlab-contrib/jupyterlab-open-url-parameter.git" |
| 29 | + }, |
| 30 | + "scripts": { |
| 31 | + "build": "jlpm build:lib && jlpm build:labextension:dev", |
| 32 | + "build:prod": "jlpm clean && jlpm build:lib:prod && jlpm build:labextension", |
| 33 | + "build:labextension": "jupyter labextension build .", |
| 34 | + "build:labextension:dev": "jupyter labextension build --development True .", |
| 35 | + "build:lib": "tsc --sourceMap", |
| 36 | + "build:lib:prod": "tsc", |
| 37 | + "clean": "jlpm clean:lib", |
| 38 | + "clean:lib": "rimraf lib tsconfig.tsbuildinfo", |
| 39 | + "clean:lintcache": "rimraf .eslintcache .stylelintcache", |
| 40 | + "clean:labextension": "rimraf jupyterlab_open_url_parameter/labextension jupyterlab_open_url_parameter/_version.py", |
| 41 | + "clean:all": "jlpm clean:lib && jlpm clean:labextension && jlpm clean:lintcache", |
| 42 | + "eslint": "jlpm eslint:check --fix", |
| 43 | + "eslint:check": "eslint . --cache --ext .ts,.tsx", |
| 44 | + "install:extension": "jlpm build", |
| 45 | + "lint": "jlpm stylelint && jlpm prettier && jlpm eslint", |
| 46 | + "lint:check": "jlpm stylelint:check && jlpm prettier:check && jlpm eslint:check", |
| 47 | + "prettier": "jlpm prettier:base --write --list-different", |
| 48 | + "prettier:base": "prettier \"**/*{.ts,.tsx,.js,.jsx,.css,.json,.md}\"", |
| 49 | + "prettier:check": "jlpm prettier:base --check", |
| 50 | + "stylelint": "jlpm stylelint:check --fix", |
| 51 | + "stylelint:check": "stylelint --cache \"style/**/*.css\"", |
| 52 | + "watch": "run-p watch:src watch:labextension", |
| 53 | + "watch:src": "tsc -w", |
| 54 | + "watch:labextension": "jupyter labextension watch ." |
| 55 | + }, |
| 56 | + "dependencies": { |
| 57 | + "@jupyterlab/application": "^3.1.0" |
| 58 | + }, |
| 59 | + "devDependencies": { |
| 60 | + "@jupyterlab/builder": "^3.1.0", |
| 61 | + "@typescript-eslint/eslint-plugin": "^4.8.1", |
| 62 | + "@typescript-eslint/parser": "^4.8.1", |
| 63 | + "eslint": "^7.14.0", |
| 64 | + "eslint-config-prettier": "^6.15.0", |
| 65 | + "eslint-plugin-prettier": "^3.1.4", |
| 66 | + "npm-run-all": "^4.1.5", |
| 67 | + "prettier": "^2.1.1", |
| 68 | + "rimraf": "^3.0.2", |
| 69 | + "stylelint": "^14.3.0", |
| 70 | + "stylelint-config-prettier": "^9.0.4", |
| 71 | + "stylelint-config-recommended": "^6.0.0", |
| 72 | + "stylelint-config-standard": "~24.0.0", |
| 73 | + "stylelint-prettier": "^2.0.0", |
| 74 | + "typescript": "~4.1.3" |
| 75 | + }, |
| 76 | + "sideEffects": [ |
| 77 | + "style/*.css", |
| 78 | + "style/index.js" |
| 79 | + ], |
| 80 | + "styleModule": "style/index.js", |
| 81 | + "publishConfig": { |
| 82 | + "access": "public" |
| 83 | + }, |
| 84 | + "jupyterlab": { |
| 85 | + "extension": true, |
| 86 | + "outputDir": "jupyterlab_open_url_parameter/labextension" |
| 87 | + } |
88 | 88 | } |
0 commit comments