-
Notifications
You must be signed in to change notification settings - Fork 42
/
package.json
executable file
·122 lines (122 loc) · 3.68 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "jupyterlab-s3-browser",
"version": "0.12.0",
"description": "JupyterLab extension for browsing S3-compatible object storage",
"keywords": [
"s3",
"cloud",
"object",
"storage",
"jupyter",
"jupyterlab",
"jupyterlab-extension"
],
"homepage": "https://github.com/IBM/jupyterlab_s3_browser",
"bugs": {
"url": "https://github.com/IBM/jupyterlab_s3_browser/issues"
},
"license": "Apache-2.0",
"author": "James Reeve",
"files": [
"lib/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}",
"schema/**/*.{json,}",
"style/**/*.{css,eot,gif,html,jpg,json,png,svg,woff2,ttf}",
"style/index.js"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"style": "style/index.css",
"directories": {
"lib": "lib/"
},
"repository": {
"type": "git",
"url": "https://github.com/IBM/jupyterlab-s3-browser.git"
},
"scripts": {
"build": "jlpm run build:lib && jlpm run build:labextension:dev",
"build:prod": "jlpm run build:lib && jlpm run build:labextension",
"build:labextension": "jupyter labextension build .",
"build:labextension:dev": "jupyter labextension build --development True .",
"build:lib": "tsc",
"clean": "jlpm run clean:lib",
"clean:lib": "rimraf lib tsconfig.tsbuildinfo",
"clean:labextension": "rimraf jupyterlab_s3_browser/labextension",
"clean:all": "jlpm run clean:lib && jlpm run clean:labextension",
"eslint": "jlpm run eslint:check --fix",
"eslint:check": "eslint . --ext .ts,.tsx",
"precommit": "lint-staged",
"prettier": "prettier --write '**/*{.ts,.tsx,.js,.jsx,.css,.json,.md}'",
"test": "cd test && ./run-tests.sh",
"install:extension": "jupyter labextension develop --overwrite .",
"watch": "run-p watch:src watch:labextension",
"watch:src": "tsc -w",
"watch:labextension": "jupyter labextension watch .",
"prepare": "husky install"
},
"dependencies": {
"@jupyterlab/application": "^2.0.0 || ^3.0.0",
"@jupyterlab/apputils": "^2.0.0 || ^3.0.0",
"@jupyterlab/coreutils": "^4.0.0 || ^5.0.0",
"@jupyterlab/docmanager": "^2.0.0 || ^3.0.0",
"@jupyterlab/docregistry": "^2.0.0 || ^3.0.0",
"@jupyterlab/filebrowser": "^2.0.0 || ^3.0.0",
"@jupyterlab/mainmenu": "^3.1.4",
"@jupyterlab/services": "^5.0.0 || ^6.0.0",
"@jupyterlab/settingregistry": "^2.0.0 || ^3.0.0",
"@lumino/algorithm": "^1.2.3",
"@lumino/disposable": "^1.7.0",
"@lumino/messaging": "^1.3.3",
"@lumino/signaling": "^1.3.5",
"@types/react": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^4.14.1",
"@typescript-eslint/parser": "^4.14.1",
"base64-js": "^1.2.3",
"eslint": "^7.18.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.22.0",
"react": "^16.0.0 || ^17.0.0"
},
"devDependencies": {
"@jupyterlab/builder": "^2.0.0 || ^3.0.1",
"@types/base64-js": "^1.2.5",
"@types/text-encoding": "^0.0.32",
"cypress": "^9.0.0",
"husky": "^7.0.2",
"lint-staged": "^7.2.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.1",
"rimraf": "^2.6.3",
"subpackage": "^1.1.0",
"typescript": "~4.1.3"
},
"sideEffects": [
"style/*.css",
"style/index.js"
],
"styleModule": "style/index.js",
"lint-staged": {
"**/*{.ts,.tsx,.css,.json,.md}": [
"prettier --write",
"git add"
]
},
"resolutions": {
"@types/react": "^17.0.0"
},
"jupyterlab": {
"discovery": {
"server": {
"managers": [
"pip"
],
"base": {
"name": "jupyterlab_s3_browser"
}
}
},
"extension": true,
"outputDir": "jupyterlab_s3_browser/labextension"
}
}