-
Notifications
You must be signed in to change notification settings - Fork 52
/
Copy pathpackage.json
68 lines (68 loc) · 2 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
{
"name": "jupyterlab-sql",
"version": "0.3.3",
"description": "JupyterLab extension for interacting with SQL databases",
"keywords": [
"jupyter",
"jupyterlab",
"jupyterlab-extension"
],
"homepage": "github.com/pbugnion/jupyterlab-sql",
"bugs": {
"url": "github.com/pbugnion/jupyterlab-sql/issues"
},
"license": "BSD-3-Clause",
"author": "Pascal Bugnion",
"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",
"repository": {
"type": "git",
"url": "github.com/pbugnion/jupyterlab-sql.git"
},
"scripts": {
"build": "tsc",
"build:dist": "npm run prepare && rimraf labextension && mkdirp labextension && cd labextension && npm pack ..",
"clean": "rimraf lib",
"prepare": "npm run clean && npm run build",
"prettier": "prettier --write '{src,__tests__}/**/*{.ts,.tsx,.js,.jsx,.css,.json,.md}'",
"prettier:check": "prettier --list-different '{src,__tests__}/**/*{.ts,.tsx,.js,.jsx,.css,.json,.md}'",
"watch": "tsc -w",
"test": "jest",
"test:changed": "jest -o"
},
"dependencies": {
"@jupyterlab/application": "^1.1.0",
"@jupyterlab/codeeditor": "^1.1.0",
"@jupyterlab/launcher": "^1.1.0",
"@phosphor/datagrid": "^0.1.6",
"@phosphor/messaging": "^1.2.3",
"@phosphor/widgets": "^1.8.0",
"classnames": "^2.2.6",
"react": "~16.8.4",
"react-dom": "~16.8.4",
"url-parse": "^1.4.4",
"uuid": "^3.3.2"
},
"devDependencies": {
"@types/classnames": "^2.2.7",
"@types/jest": "^24.0.9",
"@types/url-parse": "^1.4.3",
"@types/uuid": "^3.4.4",
"jest": "^24.1.0",
"jest-canvas-mock": "^2.0.0-beta.1",
"jest-fetch-mock": "^2.1.2",
"mkdirp": "^0.5.1",
"prettier": "^1.16.4",
"rimraf": "^2.6.3",
"ts-jest": "^24.0.0",
"typescript": "~3.5.2",
"@babel/preset-env": "^7.4.3"
},
"jupyterlab": {
"extension": true
}
}