generated from thoth-station/template-project
-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
115 lines (115 loc) · 3.67 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
{
"name": "jupyterlab_requirements",
"version": "0.16.0",
"description": "JupyterLab Extension for dependency management and optimization",
"keywords": [
"jupyter",
"jupyterlab",
"jupyterlab-extension",
"dependencies",
"ipython",
"notebook",
"requirements",
"thoth",
"horus"
],
"homepage": "https://github.com/thoth-station/jupyterlab-requirements",
"bugs": {
"url": "https://github.com/thoth-station/jupyterlab-requirements/issues"
},
"license": "GPL-3.0-or-later",
"author": "Francesco Murdaca",
"files": [
"lib/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}",
"style/**/*.{css,eot,gif,html,jpg,json,png,svg,woff2,ttf}"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"style": "style/index.css",
"repository": {
"type": "git",
"url": "https://github.com/thoth-station/jupyterlab-requirements.git"
},
"scripts": {
"build": "jlpm run build:lib && jlpm run build:labextension:dev",
"build:prod": "jlpm run build:lib && jlpm run build:labextension",
"build:lib": "tsc",
"build:labextension": "jupyter labextension build .",
"build:labextension:dev": "jupyter labextension build --development True .",
"test": "jest",
"clean": "jlpm run clean:lib",
"clean:all": "jlpm run clean:lib && jlpm run clean:labextension",
"clean:labextension": "rimraf jupyterlab_requirements/labextension",
"clean:lib": "rimraf lib tsconfig.tsbuildinfo",
"clean:more": "jlpm clean && rimraf build dist MANIFEST",
"clean:slate": "jlpm clean:more && jlpm clean:labextension && rimraf node_modules",
"contributors:generate": "jlpm run all-contributors generate",
"eslint": "eslint . --ext .ts,.tsx --fix",
"eslint:check": "eslint . --ext .ts,.tsx",
"install:extension": "jupyter labextension develop --overwrite .",
"prepare": "jlpm run clean && jlpm run build:prod",
"watch": "run-p watch:src watch:labextension",
"watch:labextension": "jupyter labextension watch .",
"watch:src": "tsc -w"
},
"dependencies": {
"@jupyterlab/application": "^3.1.0",
"@jupyterlab/launcher": "^3.1.0",
"@jupyterlab/console": "^3.1.0",
"@jupyterlab/logconsole": "^3.1.0",
"@jupyterlab/mainmenu": "^3.1.0",
"@jupyterlab/nbformat": "^3.1.0",
"@jupyterlab/notebook": "^3.1.0",
"@jupyterlab/services": "^6.1.0",
"@jupyterlab/translation": "^3.1.0",
"@lumino/coreutils": "^1.8.0",
"@lumino/disposable": "^1.7.0",
"@lumino/widgets": "^1.25.0",
"@types/lodash": "^4.14.165",
"@types/node": "^16.0.0",
"axios": "^0.21.1",
"js-logger": "^1.6.1",
"jupyterlab_toastify": "^4.1.3",
"lodash.debounce": "^4.0.8",
"yarn-deduplicate": "^3.1.0"
},
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/preset-env": "^7.14.7",
"@babel/preset-typescript": "^7.14.5",
"@jupyterlab/builder": "^3.1.0",
"@jupyterlab/testutils": "^3.1.0",
"@types/jest": "^26.0.23",
"@typescript-eslint/eslint-plugin": "^2.27.0",
"@typescript-eslint/parser": "^2.27.0",
"babel-jest": "^27.0.6",
"eslint": "^7.5.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-prettier": "^3.1.2",
"jest": "^27.0.6",
"jest-raw-loader": "^1.0.1",
"npm-run-all": "^4.1.5",
"prettier": "^1.19.0",
"rimraf": "^3.0.2",
"ts-jest": "^27.0.3",
"typescript": "~4.1.3"
},
"sideEffects": [
"style/*.css",
"style/icons/*.svg"
],
"jupyterlab": {
"discovery": {
"server": {
"managers": [
"pip"
],
"base": {
"name": "jupyterlab_requirements"
}
}
},
"extension": true,
"outputDir": "jupyterlab_requirements/labextension"
}
}