-
-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
114 lines (114 loc) · 4.83 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
{
"name": "@jupyterlab/commenting-extension",
"version": "0.3.0",
"description": "A JupyterLab extension to support commenting and annotation.",
"keywords": [
"jupyter",
"jupyterlab",
"jupyterlab-extension"
],
"homepage": "https://github.com/jupyterlab/jupyterlab-commenting",
"bugs": {
"url": "https://github.com/jupyterlab/jupyterlab-commenting/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/jupyterlab/jupyterlab-commenting.git"
},
"license": "BSD-3-Clause",
"author": "",
"files": [
"lib/**",
"style/**",
"*.md",
"docs/**"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"style": "style/index.css",
"scripts": {
"all": "jlpm run clean && jlpm run build && jlpm run build:jupyter",
"all:watch": "jlpm run clean && jlpm run build && jlpm run build:jupyter:watch",
"build": "jlpm run build:dev",
"build:backend": "pip install -e ./backend",
"build:dev": "jlpm install && jlpm run clean:packages && jlpm run clean:backend && jlpm run build:packages && jlpm run build:backend && jlpm run link:packages && jupyter labextension list",
"build:jupyter": "jupyter lab build && jupyter lab",
"build:jupyter:watch": "jupyter lab build && jupyter lab --watch",
"build:packages": "tsc --build",
"build:watch": "tsc --build --watch --listEmittedFiles",
"clean": "jlpm run clean:jupyter && jlpm clean:packages && jlpm clean:backend && jlpm clean:node",
"clean:backend": "pip uninstall --yes jupyterlab-commenting-service-server",
"clean:jupyter": "jlpm run uninstall:extensions && jlpm run unlink:packages && jupyter lab clean",
"clean:node": "rimraf node_modules",
"clean:packages": "rimraf lib tsconfig.tsbuildinfo",
"link": "jlpm run link:packages",
"link:packages": "jupyter labextension link ./ --no-build",
"lint": "jlpm run prettier && jlpm run lint:css && jlpm run lint:typescript",
"lint:check": "jlpm run prettier:check && jlpm run lint:css:check && jlpm run lint:typescript:check",
"lint:css": "stylelint **/*.css --fix --config ./etc/stylelint/.stylelintrc.json",
"lint:css:check": "stylelint **/*.css --config ./etc/stylelint/.stylelintrc.json",
"lint:typescript": "tslint --fix -c ./etc/tslint/tslint.json --project tsconfig.json '**/*{.ts,.tsx}'",
"lint:typescript:check": "tslint -c ./etc/tslint/tslint.json --project tsconfig.json '**/*{.ts,.tsx}'",
"prepublishOnly": "npm run clean && npm install && npm run build:packages",
"prettier": "prettier --write '**/*{.ts,.tsx,.js,.jsx,.css,.json,.md}' --config ./etc/prettier/.prettierrc --ignore-path ./etc/prettier/.prettierignore",
"prettier:check": "prettier --list-different '**/*{.ts,.tsx,.js,.jsx,.css,.json,.md}' --config ./etc/prettier/.prettierrc --ignore-path ./etc/prettier/.prettierignore",
"rebuild:backend": "jlpm run clean:backend && jlpm run build:backend",
"rebuild:packages": "jlpm run clean:packages && jlpm run build:packages",
"test": "env JEST_PUPPETEER_CONFIG=./etc/jest/jest-puppeteer.config.js jest --runInBand --config ./etc/jest/jest.config.js",
"test:debug": "env HEADLESS=false SLOWMO=true jlpm test",
"uninstall:extensions": "jupyter labextension uninstall --all --no-build",
"unlink": "jlpm run unlink:packages",
"unlink:packages": "jupyter labextension unlink ./ --no-build || echo 'Unlink command failed, but continuing...'"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged --config ./etc/lint-staged/lint-staged.config.js"
}
},
"dependencies": {
"@jupyterlab/application": "^2.0.0",
"@jupyterlab/apputils": "^2.0.0",
"@jupyterlab/codemirror": "^2.0.0",
"@jupyterlab/cells": "^2.0.0",
"@jupyterlab/docmanager": "^2.0.0",
"@jupyterlab/docregistry": "^2.0.0",
"@jupyterlab/filebrowser": "^2.0.0",
"@jupyterlab/fileeditor": "^2.0.0",
"@jupyterlab/notebook": "^2.0.0",
"@lumino/disposable": "^1.2.0",
"@lumino/messaging": "^1.2.3",
"@lumino/signaling": "^1.2.3",
"@lumino/widgets": "^1.8.0",
"codemirror": "~5.47.0",
"react": "~16.9.0"
},
"devDependencies": {
"@rws-air/jestscreenshot": "^3.0.3",
"@types/expect-puppeteer": "^3.3.2",
"@types/jest": "^24.0.19",
"@types/jest-environment-puppeteer": "^4.3.1",
"@types/puppeteer": "^1.20.2",
"husky": "^3.0.9",
"jest": "^24.9.0",
"jest-circus": "^24.9.0",
"jest-puppeteer": "^4.3.0",
"lint-staged": "^9.4.2",
"prettier": "^1.18.2",
"puppeteer": "^2.0.0",
"rimraf": "~2.6.2",
"stylelint": "^11.0.0",
"stylelint-config-prettier": "^6.0.0",
"stylelint-config-standard": "^19.0.0",
"ts-jest": "^24.1.0",
"tslint": "^5.20.0",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.0.1",
"typescript": "~3.5.1"
},
"publishConfig": {
"access": "public"
},
"jupyterlab": {
"extension": true
}
}