-
-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
105 lines (105 loc) · 3.4 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
{
"name": "@jupyterlab/hdf5",
"version": "1.3.0",
"description": "Open and explore (very large) HDF5 files in Jupyterlab.",
"keywords": [
"jupyter",
"jupyterlab",
"jupyterlab-extension"
],
"homepage": "https://github.com/jupyterlab/jupyterlab-hdf5",
"bugs": {
"url": "https://github.com/jupyterlab/jupyterlab-hdf5/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/jupyterlab/jupyterlab-hdf5.git"
},
"license": "BSD-3-Clause",
"author": "Project Jupyter",
"files": [
"lib/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}",
"schema/**/*.{json,}",
"src/**/*.{js,jsx,ts,tsx}",
"style/**/*.{css,eot,gif,html,jpg,json,png,svg,woff2,ttf}"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"style": "style/index.css",
"scripts": {
"black:check": "black --check 'setup.py' 'jupyterlab_hdf'",
"black:fix": "black 'setup.py' 'jupyterlab_hdf'",
"build": "tsc",
"build:dev": "jlpm build:integrity && jlpm run lab:install",
"build:integrity": "jlpm install && jlpm build",
"build:watch": "jlpm run build --watch",
"clean": "rimraf lib && rimraf tsconfig.tsbuildinfo",
"clean:more": "jlpm run clean && rimraf build && rimraf dist && rimraf package && rimraf *.tgz",
"clean:slate": "jlpm run clean:more && rimraf node_modules",
"deduplicate": "jlpm yarn-deduplicate -s fewer",
"eslint:check": "eslint . --ext .js,.jsx,.ts,.tsx",
"eslint:fix": "eslint . --ext .js,.jsx,.ts,.tsx --fix",
"lab:install": "jupyter labextension link .",
"lab:link": "jupyter labextension link . --no-build",
"lab:uninstall": "jupyter labextension uninstall @jupyterlab/hdf5",
"lab:unlink": "jupyter labextension uninstall @jupyterlab/hdf5 --no-build",
"lint:check": "jlpm run eslint:check && jlpm run prettier:check && jlpm run black:check",
"lint:fix": "jlpm run eslint:fix && jlpm run prettier:fix && jlpm run black:fix",
"prepublishOnly": "jlpm build:integrity",
"prettier:check": "prettier --check '**/*{.ts,.tsx,.js,.jsx,.css,.json,.md}'",
"prettier:fix": "prettier --write '**/*{.ts,.tsx,.js,.jsx,.css,.json,.md}'",
"watch": "tsc -w"
},
"dependencies": {
"@jupyterlab/application": "^3.0.0",
"@jupyterlab/apputils": "^3.0.0",
"@jupyterlab/coreutils": "^5.0.0",
"@jupyterlab/docmanager": "^3.0.0",
"@jupyterlab/docregistry": "^3.0.0",
"@jupyterlab/filebrowser": "^3.0.0",
"@jupyterlab/notebook": "^3.0.0",
"@jupyterlab/services": "^6.0.0",
"@lumino/algorithm": "^1.3.0",
"@lumino/coreutils": "^1.5.0",
"@lumino/datagrid": "^0.14.0",
"@lumino/messaging": "^1.4.0",
"@lumino/signaling": "^1.4.0",
"@lumino/widgets": "^1.14.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.10.0",
"@typescript-eslint/parser": "^4.10.0",
"eslint": "^7.15.0",
"eslint-config-prettier": "^7.0.0",
"husky": "^3.0.1",
"lint-staged": "^10.5.3",
"prettier": "^2.2.1",
"rimraf": "~2.6.2",
"shell-quote": "^1.7.2",
"typescript": "~4.1.0",
"yarn-deduplicate": "^3.1.0"
},
"publishConfig": {
"access": "public"
},
"husky": {
"hooks": {
"pre-commit": [
"lint-staged"
]
}
},
"jupyterlab": {
"extension": true,
"discovery": {
"server": {
"managers": [
"pip"
],
"base": {
"name": "jupyterlab_hdf"
}
}
}
}
}