-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
97 lines (97 loc) · 2.99 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
{
"name": "lineup_widget",
"version": "4.6.0",
"description": "Wrapper around the LineUp.js library for multi attribute rankings",
"keywords": [
"jupyter",
"jupyterlab",
"jupyterlab-extension",
"widgets",
"lineupjs"
],
"files": [
"lib/**/*.js",
"dist/*.js",
"css/*.css"
],
"homepage": "https://github.com/lineupjs/lineup_widget",
"bugs": {
"url": "https://github.com/lineupjs/lineup_widget/issues"
},
"license": "MIT",
"author": {
"name": "Samuel Gratzl",
"email": "[email protected]",
"url": "https://www.sgratzl.com"
},
"main": "lib/index.js",
"types": "./lib/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/lineupjs/lineup_widget"
},
"scripts": {
"build": "yarn run build:lib && yarn run build:nbextension && yarn run build:labextension:dev",
"build:prod": "yarn run build:lib && yarn run build:nbextension && yarn run build:labextension",
"build:labextension": "jupyter labextension build .",
"build:labextension:dev": "jupyter labextension build --development True .",
"build:lib": "tsc",
"build:nbextension": "webpack",
"clean": "yarn run clean:lib && yarn run clean:nbextension && yarn run clean:labextension",
"clean:lib": "rimraf lib",
"clean:labextension": "rimraf lineup_widget/labextension",
"clean:nbextension": "rimraf lineup_widget/nbextension/static/index.js",
"lint": "eslint . --ext .ts,.tsx --fix",
"lint:check": "eslint . --ext .ts,.tsx",
"prepack": "yarn run build:lib",
"test": "jest --passWithNoTests",
"watch": "npm-run-all -p watch:*",
"watch:lib": "tsc -w",
"watch:nbextension": "webpack --watch --mode=development",
"watch:labextension": "jupyter labextension watch ."
},
"dependencies": {
"@jupyter-widgets/base": "^1.1.10 || ^2.0.0 || ^3.0.0 || ^4.0.0 || ^6.0.0",
"lineupjs": "^4.6.2"
},
"devDependencies": {
"@babel/core": "^7.18.10",
"@babel/preset-env": "^7.18.10",
"@jupyterlab/builder": "^3.4.4",
"@phosphor/application": "^1.7.3",
"@phosphor/widgets": "^1.9.3",
"@types/jest": "^28.1.6",
"@types/webpack-env": "^1.17.0",
"@typescript-eslint/eslint-plugin": "^5.33.0",
"@typescript-eslint/parser": "^5.33.0",
"acorn": "^8.8.0",
"css-loader": "^6.7.1",
"eslint": "^8.21.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"fs-extra": "^10.1.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^28.1.3",
"mkdirp": "^1.0.4",
"npm-run-all": "^4.1.5",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"source-map-loader": "^4.0.0",
"style-loader": "^3.3.1",
"ts-jest": "^28.0.7",
"ts-loader": "^9.3.1",
"typescript": "~4.7.4",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0"
},
"jupyterlab": {
"extension": "lib/plugin",
"outputDir": "lineup_widget/labextension/",
"sharedPackages": {
"@jupyter-widgets/base": {
"bundled": false,
"singleton": true
}
}
}
}