-
Notifications
You must be signed in to change notification settings - Fork 964
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.43 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.43 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
{
"name": "@jupyter-widgets/base-manager",
"version": "1.0.12",
"description": "Jupyter interactive widgets - base manager",
"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",
"src"
],
"scripts": {
"build": "npm run build:src",
"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",
"@jupyterlab/services": "^6 || ^7",
"@lumino/coreutils": "^1 || ^2",
"base64-js": "^1.2.1",
"sanitize-html": "^2.3"
},
"devDependencies": {
"@types/base64-js": "^1.2.5",
"@types/chai": "^4.1.7",
"@types/chai-as-promised": "^7.1.0",
"@types/expect.js": "^0.3.29",
"@types/mocha": "^9.0.0",
"@types/sanitize-html": "^2.6.0",
"@types/sinon": "^10.0.2",
"@types/sinon-chai": "^3.2.2",
"chai": "^4.0.0",
"chai-as-promised": "^7.0.0",
"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",
"mocha": "^9.0.0",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"sinon": "^12.0.1",
"sinon-chai": "^3.3.0",
"typescript": "~4.9.4",
"webpack": "^5.65.0"
},
"publishConfig": {
"access": "public"
}
}