-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
60 lines (60 loc) · 1.52 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
{
"name": "@yudai-nkt/jupyterlab_city-lights-theme",
"version": "3.0.0",
"description": "A port of the City Lights theme for JupyterLab",
"author": "Yudai Nakata <[email protected]>",
"keywords": [
"jupyter",
"jupyterlab",
"jupyterlab-extension",
"jupyterlab-theme"
],
"license": "MIT",
"files": [
"lib/*.d.ts",
"lib/*.js.map",
"lib/*.js",
"style/*"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"directories": {
"lib": "lib/"
},
"scripts": {
"build": "tsc",
"bump": "standard-version",
"bump:dryrun": "standard-version --dry-run",
"clean": "rimraf lib && rimraf tsconfig.tsbuildinfo",
"postpublish": "git push --follow-tags origin master",
"prepublishOnly": "npm run clean && npm run build",
"watch": "tsc -w"
},
"dependencies": {
"@jupyterlab/application": "^3.0.3",
"@jupyterlab/apputils": "^3.0.2"
},
"devDependencies": {
"@commitlint/cli": "^12.0.1",
"@commitlint/config-conventional": "^12.0.1",
"husky": "^4.2.5",
"rimraf": "~3.0.2",
"standard-version": "^9.1.0",
"typescript": "~4.3.2"
},
"publishConfig": {
"access": "public"
},
"jupyterlab": {
"extension": true,
"themePath": "style/index.css"
},
"homepage": "https://github.com/yudai-nkt/jupyterlab_city-lights-theme",
"bugs": {
"url": "https://github.com/yudai-nkt/jupyterlab_city-lights-theme/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/yudai-nkt/jupyterlab_city-lights-theme.git"
}
}