-
Notifications
You must be signed in to change notification settings - Fork 48
/
package.json
96 lines (96 loc) · 3.25 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
{
"name": "jupyterlab-execute-time",
"version": "3.2.0",
"description": "Display cell timings in Jupyter Lab",
"keywords": [
"jupyter",
"jupyterlab",
"jupyterlab-extension",
"execute time"
],
"homepage": "https://github.com/deshaw/jupyterlab-execute-time",
"bugs": {
"url": "https://github.com/deshaw/jupyterlab-execute-time/issues"
},
"license": "BSD-3-Clause",
"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}",
"schema/*.json",
"style/index.js"
],
"sideEffects": [
"style/*.css",
"style/index.js"
],
"jupyterlab": {
"extension": true,
"schemaDir": "schema",
"outputDir": "jupyterlab_execute_time/labextension"
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/deshaw/jupyterlab-execute-time.git"
},
"scripts": {
"build": "jlpm run build:lib && jlpm run build:labextension:dev",
"build:labextension": "jupyter-labextension build .",
"build:labextension:dev": "jupyter-labextension build --development True .",
"build:lib": "tsc",
"build:prod": "jlpm run clean && jlpm run build:lib && jlpm run build:labextension",
"clean": "jlpm run clean:lib",
"clean:all": "jlpm run clean:lib && jlpm run clean:labextension",
"clean:labextension": "rimraf jupyterlab_execute_time/labextension",
"clean:lib": "rimraf lib tsconfig.tsbuildinfo",
"eslint": "eslint . --ext .ts,.tsx --fix",
"eslint:check": "eslint . --ext .ts,.tsx",
"install:extension": "jlpm run build",
"lint": "npm run prettier && npm run tslint",
"prepare": "jlpm run clean && jlpm run build:prod && husky install",
"prettier": "prettier --write '**/*{.ts,.tsx,.js,.jsx,.css,.json,.md}'",
"test": "ts-mocha -p tests/tsconfig.json tests/**/*_spec.ts",
"tslint": "tslint --fix -c tslint.json --project tsconfig.json '**/*{.ts,.tsx}'",
"watch": "run-p watch:src watch:labextension",
"watch:labextension": "jupyter-labextension watch .",
"watch:src": "tsc -w --sourceMap"
},
"dependencies": {
"@jupyterlab/application": "^4.0.0",
"@jupyterlab/apputils": "^4.0.0",
"@jupyterlab/cells": "^4.0.0",
"@jupyterlab/docregistry": "^4.0.0",
"@jupyterlab/notebook": "^4.0.0",
"@jupyterlab/observables": "^4.0.0",
"@jupyterlab/settingregistry": "^4.0.0",
"@lumino/coreutils": "^2.0.0-rc.1",
"@lumino/widgets": "^2.0.0-rc.1",
"date-fns": "^2.29.3"
},
"devDependencies": {
"@jupyterlab/builder": "^4.0.0",
"@types/chai": "^4.3.4",
"@types/json-schema": "^7.0.11",
"@types/mocha": "^10.0.1",
"@types/react": "^18.0.26",
"@typescript-eslint/eslint-plugin": "~5.55.0",
"@typescript-eslint/parser": "~5.55.0",
"chai": "^4.3.7",
"eslint": "~8.36.0",
"eslint-config-prettier": "~8.7.0",
"eslint-plugin-prettier": "~4.2.1",
"husky": "^8.0.3",
"mocha": "^10.2.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.4",
"rimraf": "^4.4.0",
"ts-mocha": "^10.0.0",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.3.0",
"typescript": "~5.0.2",
"yjs": "^13.5.0"
},
"styleModule": "style/index.js"
}