-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
83 lines (83 loc) · 2.36 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
{
"name": "NanopubJL",
"version": "0.3.0",
"description": "A Jupyterlab extension for searching and publishing nanopublications. ",
"keywords": [
"jupyter",
"jupyterlab",
"jupyterlab-extension"
],
"homepage": "https://github.com/fair-workflows/NanopubJL",
"bugs": {
"url": "https://github.com/fair-workflows/NanopubJL/issues"
},
"license": "BSD-3-Clause",
"author": "Robin Richardson, Djura Smits",
"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}"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"style": "style/index.css",
"repository": {
"type": "git",
"url": "https://github.com/fair-workflows/NanopubJL.git"
},
"scripts": {
"build": "jlpm run build:lib",
"build:labextension": "cd NanopubJL && rimraf labextension && mkdirp labextension && cd labextension && npm pack ../..",
"build:lib": "tsc",
"build:all": "jlpm run build:labextension",
"clean": "jlpm run clean:lib",
"clean:lib": "rimraf lib tsconfig.tsbuildinfo",
"clean:labextension": "rimraf NanopubJL/labextension",
"clean:all": "jlpm run clean:lib && jlpm run clean:labextension",
"eslint": "eslint . --ext .ts,.tsx --fix",
"eslint:check": "eslint . --ext .ts,.tsx",
"prepare": "jlpm run clean && jlpm run build",
"watch": "tsc -w"
},
"dependencies": {
"@jupyterlab/application": "^3.0.0",
"@jupyterlab/coreutils": "^5.0.0",
"@jupyterlab/notebook": "^3.0.0",
"@jupyterlab/services": "^6.0.0",
"react": "~17.0.1",
"react-dom": "~17.0.1",
"ts-debounce": "^2.0.1"
},
"devDependencies": {
"@types/react-dom": "^16.9.8",
"@typescript-eslint/eslint-plugin": ">=2.25.0 <=2.31.0 ",
"@typescript-eslint/parser": ">=2.25.0 <=2.31.0",
"eslint-plugin-react": "7.20.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-prettier": "^3.1.2",
"mkdirp": "^1.0.3",
"prettier": "1.16.4",
"rimraf": "^2.6.1",
"typescript": "~3.7.0"
},
"resolutions": {
"@types/react": "~16.9.0",
"react": "~16.9.0"
},
"sideEffects": [
"style/*.css"
],
"jupyterlab": {
"discovery": {
"server": {
"managers": [
"pip"
],
"base": {
"name": "NanopubJL"
}
}
},
"extension": true
}
}