UNPKG

2.66 kBJSONView Raw
1{
2 "name": "@jupyter-widgets/base",
3 "version": "6.0.4",
4 "description": "Jupyter interactive widgets",
5 "repository": {
6 "type": "git",
7 "url": "https://github.com/jupyter-widgets/ipywidgets.git"
8 },
9 "license": "BSD-3-Clause",
10 "author": "Project Jupyter",
11 "main": "lib/index.js",
12 "typings": "lib/index.d.ts",
13 "files": [
14 "lib/**/*.d.ts",
15 "lib/**/*.js",
16 "css/*.css"
17 ],
18 "scripts": {
19 "build": "npm run build:src",
20 "build:src": "tsc --build",
21 "build:test": "tsc --build test && webpack --config test/webpack.conf.js",
22 "clean": "npm run clean:src",
23 "clean:src": "rimraf lib && rimraf tsconfig.tsbuildinfo",
24 "prepublish": "npm run clean && npm run build",
25 "test": "npm run test:unit",
26 "test:coverage": "npm run build:test && webpack --config test/webpack-cov.conf.js && karma start test/karma-cov.conf.js",
27 "test:unit": "npm run test:unit:firefox && npm run test:unit:chrome",
28 "test:unit:chrome": "npm run test:unit:default -- --browsers=Chrome",
29 "test:unit:chrome:debug": "npm run test:unit:default -- --browsers=Chrome --single-run=false",
30 "test:unit:default": "npm run build:test && karma start test/karma.conf.js --log-level debug",
31 "test:unit:firefox": "npm run test:unit:default -- --browsers=Firefox",
32 "test:unit:firefox:headless": "npm run test:unit:default -- --browsers=FirefoxHeadless",
33 "test:unit:ie": "npm run test:unit:default -- --browsers=IE"
34 },
35 "dependencies": {
36 "@jupyterlab/services": "^6.0.0",
37 "@lumino/coreutils": "^1.11.1",
38 "@lumino/messaging": "^1.10.1",
39 "@lumino/widgets": "^1.30.0",
40 "@types/backbone": "1.4.14",
41 "@types/lodash": "^4.14.134",
42 "backbone": "1.4.0",
43 "jquery": "^3.1.1",
44 "lodash": "^4.17.4"
45 },
46 "devDependencies": {
47 "@types/base64-js": "^1.2.5",
48 "@types/chai": "^4.1.7",
49 "@types/chai-as-promised": "^7.1.0",
50 "@types/expect.js": "^0.3.29",
51 "@types/mocha": "^9.0.0",
52 "@types/sinon": "^10.0.2",
53 "@types/sinon-chai": "^3.2.2",
54 "chai": "^4.0.0",
55 "chai-as-promised": "^7.0.0",
56 "expect.js": "^0.3.1",
57 "istanbul-instrumenter-loader": "^3.0.1",
58 "karma": "^6.3.3",
59 "karma-chrome-launcher": "^3.1.0",
60 "karma-coverage": "^2.0.3",
61 "karma-firefox-launcher": "^2.1.1",
62 "karma-ie-launcher": "^1.0.0",
63 "karma-mocha": "^2.0.1",
64 "karma-mocha-reporter": "^2.2.5",
65 "karma-webpack": "^5.0.0",
66 "mocha": "^9.0.0",
67 "npm-run-all": "^4.1.5",
68 "rimraf": "^3.0.2",
69 "sinon": "^12.0.1",
70 "sinon-chai": "^3.3.0",
71 "typescript": "~4.9.4",
72 "webpack": "^5.65.0"
73 },
74 "gitHead": "80cef4439d02cd4865fcc6e9a00aeef124f95e82"
75}