This repository has been archived by the owner on Apr 30, 2020. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathpackage.json
85 lines (85 loc) · 2.69 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
{
"name": "@jupyterlab/celltags",
"version": "0.2.0",
"description": "Extension for adding descriptive tags to notebook cells (Beta)",
"keywords": [
"jupyter",
"jupyterlab",
"jupyterlab-extension"
],
"homepage": "https://github.com/jupyterlab/jupyterlab-celltags.git",
"bugs": {
"url": "https://github.com/jupyterlab/jupyterlab-celltags.git/issues"
},
"license": "BSD-3-Clause",
"author": "Zuoyuan Huang, Markelle Kelly, Rose Chang, Max Klein",
"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}",
"static/**/*.{css,eot,gif,html,jpg,json,png,svg,woff2,ttf}"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/jupyterlab/jupyterlab-celltags.git"
},
"scripts": {
"build": "jlpm install && tsc",
"build:dev": "jlpm run build && jlpm run lab:install",
"build:watch": "jlpm run build --watch",
"clean": "rimraf lib && rimraf tsconfig.tsbuildinfo",
"clean:dist": "jlpm run clean && rimraf *.tgz",
"clean:slate": "jlpm run clean:dist && rimraf node_modules",
"deduplicate": "jlpm yarn-deduplicate -s fewer",
"lab:install": "jupyter labextension install .",
"lab:link": "jupyter labextension install . --no-build",
"lab:uninstall": "jupyter labextension uninstall @jupyterlab/celltags",
"lab:unlink": "jupyter labextension uninstall @jupyterlab/celltags --no-build",
"precommit": "lint-staged",
"prepublishOnly": "jlpm run clean && jlpm run build",
"prettier": "prettier --write '**/*{.ts,.tsx,.js,.jsx,.css,.json,.md}'",
"tslint": "tslint -c tslint.json --project tsconfig.json '**/*{.ts,.tsx}'",
"watch": "tsc -w"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*{.ts,.tsx,.css,.json,.md}": [
"prettier --write",
"git add"
]
},
"dependencies": {
"@jupyterlab/application": "^1.1.0",
"@jupyterlab/apputils": "^1.1.0",
"@jupyterlab/coreutils": "^3.1.0",
"@jupyterlab/docmanager": "^1.1.0",
"@jupyterlab/notebook": "^1.1.0",
"@jupyterlab/notebook-extension": "^1.1.0",
"@jupyterlab/rendermime": "^1.1.0",
"react": "~16.8.4",
"react-dom": "~16.8.4",
"typestyle": "^2.0.1"
},
"devDependencies": {
"@types/node": "^12.7.11",
"@types/react": "~16.8.18",
"@types/react-dom": "~16.8.4",
"husky": "^3.0.1",
"lint-staged": "^7.2.0",
"prettier": "^1.13.7",
"rimraf": "^2.6.1",
"typescript": "~3.4.3",
"yarn-deduplicate": "^1.1.1"
},
"publishConfig": {
"access": "public"
},
"jupyterlab": {
"extension": true
}
}