-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
103 lines (102 loc) · 3 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
{
"name": "xellgrid",
"version": "1.1.3",
"description": "An Interactive Grid for Sorting and Filtering DataFrames in Jupyter Notebook",
"author": {
"name": "XellGrid",
"email": "[email protected]"
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"style": "style/index.css",
"homepage": "Doesnot exist",
"repository": {
"type": "git",
"url": "https://github.com/xellgrid/XellGrid/"
},
"keywords": [
"jupyter",
"widgets",
"ipython",
"ipywidgets"
],
"license": "BSD-3",
"scripts": {
"build": "jlpm run prepare && jlpm run build:labextension:dev",
"webpack": "webpack build",
"build:labextension": "jupyter labextension build .",
"build:labextension:dev": "jupyter labextension build --development True .",
"build:prod": "jlpm run clean && jlpm run build:lib && jlpm run build:labextension",
"clean": "jlpm run clean:lib",
"clean:all": "jlpm run clean:lib && jlpm run clean:labextension && jlpm run clean:dist",
"clean:dist": "rimraf dist",
"clean:labextension": "rimraf xellgrid/labextension",
"clean:lib": "rimraf lib tsconfig.tsbuildinfo",
"eslint": "eslint . --ext .ts,.tsx --fix",
"eslint:check": "eslint . --ext .ts,.tsx",
"install:extension": "jlpm run build",
"prepare": "webpack",
"test": "echo \"Error: no test specified\" && exit 1",
"watch": "run-p watch_wp watch:labextension",
"watch_wp": "webpack --watch",
"watch:labextension": "jupyter labextension watch ."
},
"devDependencies": {
"@jupyterlab/builder": "^3.1.0",
"@typescript-eslint/eslint-plugin": "^4.8.1",
"@typescript-eslint/parser": "^4.8.1",
"css-loader": "^3.4.2",
"eslint": "^7.14.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.1.4",
"expose-loader": "^0.7.5",
"file-loader": "^6.0.0",
"jshint": "^2.11.0",
"json-loader": "^0.5.7",
"npm-run-all": "^4.1.5",
"prettier": "^2.1.1",
"rimraf": "^3.0.2",
"style-loader": "^1.1.3",
"typescript": "~4.1.3",
"webpack": "^4.42.0",
"webpack-cli": "^4.9.2"
},
"dependencies": {
"@jupyter-widgets/base": "^4",
"@jupyterlab/application": "^3.4.3",
"@jupyterlab/apputils": "^3.4.3",
"@jupyterlab/notebook": "^3.4.3",
"@types/jquery": "^3.5.14",
"@types/jquery.ui.datetimepicker": "^0.3.30",
"@types/jqueryui": "^1.11.1",
"@types/underscore": "^1.11.4",
"acorn": "^8.7.0",
"acorn-import-assertions": "^1.8.0",
"clean": "^4.0.2",
"jquery": "^3.2.1",
"jquery-datepicker": "^1.12.3",
"jquery-ui-dist": "^1.12.1",
"jqueryui": "^1.11.1",
"moment": "^2.24.0",
"slickgrid": "2.4.44",
"ts-loader": "~8.2.0",
"underscore": "^1.9.2"
},
"jshintConfig": {
"esversion": 6
},
"files": [
"dist/",
"src/*.js",
"src/*.css",
"src/images/",
"style/index.js",
"src/*.ts"
],
"jupyterlab": {
"extension": true,
"outputDir": "xellgrid/labextension",
"schemaDir": "schema"
},
"styleModule": "style/index.js"
}