-
Notifications
You must be signed in to change notification settings - Fork 963
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.9 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.9 KB
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
{
"name": "@jupyter-widgets/controls",
"version": "5.0.12",
"description": "Jupyter interactive widgets",
"repository": {
"type": "git",
"url": "https://github.com/jupyter-widgets/ipywidgets.git"
},
"license": "BSD-3-Clause",
"author": "Project Jupyter",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"files": [
"lib/**/*.map",
"lib/**/*.d.ts",
"lib/**/*.js",
"css/*.css",
"dist/",
"src"
],
"scripts": {
"build": "npm run build:src && npm run build:css",
"build:css": "lessc css/nouislider.less css/nouislider.css && postcss --use postcss-import --use postcss-cssnext -o css/widgets.built.css css/widgets.css",
"build:src": "tsc --build",
"build:test": "tsc --build test && webpack --config test/webpack.conf.js",
"clean": "npm run clean:src",
"clean:src": "rimraf lib && rimraf tsconfig.tsbuildinfo",
"prepublish": "npm run clean && npm run build",
"test": "npm run test:unit",
"test:coverage": "npm run build:test && webpack --config test/webpack-cov.conf.js && karma start test/karma-cov.conf.js",
"test:unit": "npm run test:unit:firefox && npm run test:unit:chrome",
"test:unit:chrome": "npm run test:unit:default -- --browsers=Chrome",
"test:unit:default": "npm run build:test && karma start test/karma.conf.js --log-level debug",
"test:unit:firefox": "npm run test:unit:default -- --browsers=Firefox",
"test:unit:firefox:headless": "npm run test:unit:default -- --browsers=FirefoxHeadless",
"test:unit:ie": "npm run test:unit:default -- --browsers=IE"
},
"dependencies": {
"@jupyter-widgets/base": "^6.0.11",
"@lumino/algorithm": "^1 || ^2",
"@lumino/domutils": "^1 || ^2",
"@lumino/messaging": "^1 || ^2",
"@lumino/signaling": "^1 || ^2",
"@lumino/widgets": "^1 || ^2",
"d3-color": "^3.0.1",
"d3-format": "^3.0.1",
"jquery": "^3.1.1",
"nouislider": "15.4.0"
},
"devDependencies": {
"@jupyterlab/services": "^6.0.0 || ^7.0.0",
"@types/d3-color": "^3.0.2",
"@types/d3-format": "^3.0.1",
"@types/expect.js": "^0.3.29",
"@types/jquery": "^3.5.16",
"@types/mathjax": "^0.0.37",
"@types/mocha": "^9.0.0",
"@types/node": "^17.0.2",
"chai": "^4.0.0",
"css-loader": "^6.5.1",
"expect.js": "^0.3.1",
"karma": "^6.3.3",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage": "^2.0.3",
"karma-firefox-launcher": "^2.1.1",
"karma-ie-launcher": "^1.0.0",
"karma-mocha": "^2.0.1",
"karma-mocha-reporter": "^2.2.5",
"karma-webpack": "^5.0.0",
"less": "^4.1.2",
"mocha": "^9.0.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.3.2",
"postcss-cli": "^9.1.0",
"postcss-cssnext": "^3.1.0",
"postcss-import": "^14.0.2",
"postcss-loader": "^6.1.0",
"rimraf": "^3.0.2",
"sinon": "^12.0.1",
"sinon-chai": "^3.3.0",
"style-loader": "^3.3.1",
"typescript": "~4.9.4",
"webpack": "^5.65.0"
}
}