-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.49 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.49 KB
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
{
"name": "python-template-jupyter",
"version": "0.1.0",
"description": "A Jupyter-Python project template",
"repository": "git@github.com:python-project-templates/python-template-jupyter.git",
"author": "Python Project Template Authors <3105306+timkpaine@users.noreply.github.com>",
"license": "Apache-2.0",
"keywords": [
"jupyter",
"jupyterlab",
"jupyterlab-extension"
],
"main": "lib/index.js",
"files": [
"lib/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}",
"style/**/*.css"
],
"jupyterlab": {
"extension": "lib/index.js",
"outputDir": "../python_template_jupyter/labextension",
"discovery": {
"server": {
"base": {
"name": "python_template_jupyter"
},
"managers": [
"pip"
]
}
}
},
"scripts": {
"build:babel": "babel src/ --source-maps --out-dir lib/",
"build:nbextension": "mkdirp ../python_template_jupyter/nbextension/static/ && cpy --flat 'src/notebook.js' '../python_template_jupyter/nbextension/static/'",
"build:labextension": "rimraf ../python_template_jupyter/labextension && jupyter labextension build .",
"build": "pnpm clean && pnpm build:babel && pnpm build:labextension && pnpm build:nbextension",
"clean": "rimraf lib",
"fix": "pnpm lint --fix",
"lint": "eslint -c .eslintrc.js --ext .js src/ tests/",
"preinstall": "npx only-allow pnpm",
"prepublishOnly": "pnpm run build",
"test": "jest --coverage --collectCoverageFrom=src/*.{js}"
},
"dependencies": {
"@jupyterlab/application": "^4.5.1",
"@jupyterlab/apputils": "^4.6.1",
"@jupyterlab/notebook": "^4.5.1",
"@jupyterlab/services": "^7.5.1",
"@lumino/disposable": "^2.1.5"
},
"devDependencies": {
"@babel/cli": "^7.28.3",
"@babel/core": "^7.28.5",
"@babel/eslint-parser": "^7.28.5",
"@babel/preset-env": "^7.28.5",
"@jupyterlab/builder": "^4.5.1",
"babel-jest": "^30.2.0",
"cpy-cli": "^6.0.0",
"eslint": "^8.57.1",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jest": "^29.12.0",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-prettier": "^5.5.4",
"isomorphic-fetch": "^3.0.0",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"jest-junit": "^16.0.0",
"jest-transform-css": "^6.0.3",
"mkdirp": "^3.0.1",
"prettier": "^3.7.4",
"rimraf": "^6.1.0"
}
}