-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
129 lines (129 loc) · 3.82 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "bqscales",
"version": "0.3.3",
"description": "Grammar of Graphics in Python",
"keywords": [
"jupyter",
"jupyterlab",
"jupyterlab-extension",
"widgets"
],
"files": [
"lib/**/*.js",
"lib/**/*.ts",
"dist/*.js"
],
"homepage": "https://github.com/bqplot/bqscales",
"bugs": {
"url": "https://github.com/bqplot/bqscales/issues"
},
"license": "Apache",
"author": {
"name": "Bqplot development team"
},
"main": "lib/index.js",
"types": "./lib/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/bqplot/bqscales"
},
"scripts": {
"build": "yarn run build:lib && yarn run build:nbextension && yarn run build:labextension",
"build:lib": "tsc",
"build:nbextension": "webpack",
"build:labextension": "jupyter labextension build .",
"clean": "yarn run clean:lib && yarn run clean:nbextension && yarn run clean:labextension",
"clean:lib": "rimraf lib",
"clean:nbextension": "rimraf bqscales/nbextension/static/index.js",
"clean:labextension": "rimraf bqscales/labextension",
"prepack": "npm run build",
"test": "npm run test:chrome",
"test:chrome": "karma start --browsers=Chrome tests/karma.conf.js",
"test:debug": "karma start --browsers=Chrome --singleRun=false --debug=true tests/karma.conf.js",
"test:firefox": "karma start --browsers=Firefox tests/karma.conf.js",
"test:ie": "karma start --browsers=IE tests/karma.conf.js",
"watch": "npm-run-all -p watch:*",
"watch:lib": "tsc -w",
"watch:nbextension": "webpack --watch",
"prettier:check": "prettier src --check",
"prettier:fix": "prettier src --write",
"eslint:check": "eslint src --ext .ts",
"eslint:fix": "eslint src --ext .ts --fix"
},
"dependencies": {
"@jupyter-widgets/base": "^2 || ^3 || ^4 || ^5 || ^6",
"@lumino/application": "^1.7.3 || ^2",
"@lumino/widgets": "^1.9.3 || ^2",
"d3-array": "^2.4.0",
"d3-geo": "^1.11.9",
"d3-scale": "^3.2.1",
"underscore": "^1.9.2"
},
"devDependencies": {
"@jupyterlab/builder": "^4",
"@types/d3-array": "^2.0.0",
"@types/d3-geo": "^1.11.1",
"@types/d3-scale": "^2.1.1",
"@types/expect.js": "^0.3.29",
"@types/mocha": "^7.0.1",
"@types/node": "^13.7.0",
"@types/webpack-env": "^1.15.1",
"@typescript-eslint/eslint-plugin": "^4.19.0",
"@typescript-eslint/parser": "^4.19.0",
"babel-polyfill": "^6.26.0",
"eslint": "^7.22.0",
"eslint-config-prettier": "^8.1.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-promise": "^4.2.1",
"expect.js": "^0.3.1",
"fs-extra": "^7.0.0",
"karma": "^6.3.14",
"karma-chrome-launcher": "^3.1.0",
"karma-firefox-launcher": "^1.3.0",
"karma-ie-launcher": "^1.0.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.5",
"karma-typescript": "^4.1.1",
"karma-typescript-es6-transform": "^4.1.1",
"mkdirp": "^0.5.1",
"mocha": "^7.0.1",
"npm-run-all": "^4.1.3",
"prettier": "^2.2.1",
"rimraf": "^2.6.2",
"source-map-loader": "^0.2.4",
"ts-loader": "^6.2.1",
"typescript": "^5",
"webpack": "^5.61",
"webpack-cli": "^4"
},
"jupyterlab": {
"extension": "lib/plugin",
"webpackConfig": "webpack.lab.config.js",
"outputDir": "bqscales/labextension",
"sharedPackages": {
"@jupyter-widgets/base": {
"bundled": false,
"singleton": true
},
"d3-array": {
"bundled": true,
"singleton": false
},
"d3-geo": {
"bundled": true,
"singleton": false
},
"d3-scale": {
"bundled": true,
"singleton": false
},
"underscore": {
"bundled": true,
"singleton": false
}
}
}
}