forked from franchesoni/jupyter_segmentation
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
102 lines (102 loc) · 3.16 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
{
"name": "ipyfan",
"version": "0.2.0",
"description": "manual image segmentation in jupyter",
"keywords": [
"jupyter",
"jupyterlab",
"jupyterlab-extension",
"widgets"
],
"files": [
"lib/**/*.js",
"dist/*.js",
"css/*.css"
],
"homepage": "https://github.com//ipyfan",
"bugs": {
"url": "https://github.com//ipyfan/issues"
},
"license": "BSD-3-Clause",
"author": {
"name": "franchesoni",
"email": "[email protected]"
},
"main": "lib/index.js",
"types": "./lib/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com//ipyfan"
},
"scripts": {
"build": "npm run build:lib && npm run build:nbextension",
"build:labextension": "npm run clean:labextension && mkdirp ipyfan/labextension && cd ipyfan/labextension && npm pack ../..",
"build:lib": "tsc",
"build:nbextension": "webpack -p",
"build:all": "npm run build:labextension && npm run build:nbextension",
"clean": "npm run clean:lib && npm run clean:nbextension",
"clean:lib": "rimraf lib",
"clean:labextension": "rimraf ipyfan/labextension",
"clean:nbextension": "rimraf ipyfan/nbextension/static/index.js",
"prepack": "npm run build:lib",
"test": "npm run test:firefox",
"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",
"lint": "eslint . --ext .ts --fix",
"lint:check": "eslint . --ext .ts"
},
"dependencies": {
"@jupyter-widgets/base": "^1.1.10 || ^2.0.1 || ^3",
"jupyter-dataserializers": "^2.2.0",
"ndarray": "^1.0.19",
"pako": "^1.0.11"
},
"devDependencies": {
"@phosphor/application": "^1.6.0",
"@phosphor/widgets": "^1.6.0",
"@types/expect.js": "^0.3.29",
"@types/mocha": "^5.2.5",
"@types/ndarray": "^1.0.8",
"@types/node": "^10.11.6",
"@types/pako": "^1.0.1",
"@types/webpack-env": "^1.13.6",
"@typescript-eslint/eslint-plugin": "^3.2.0",
"@typescript-eslint/parser": "^3.2.0",
"acorn": "^7.2.0",
"css-loader": "^3.2.0",
"eslint": "^7.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"expect.js": "^0.3.1",
"fs-extra": "^7.0.0",
"husky": "^4.2.5",
"karma": "^3.0.0",
"karma-chrome-launcher": "^2.2.0",
"karma-firefox-launcher": "^1.1.0",
"karma-ie-launcher": "^1.0.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.5",
"karma-typescript": "^5.0.3",
"karma-typescript-es6-transform": "^5.0.3",
"lint-staged": "^10.2.9",
"mkdirp": "^0.5.1",
"mocha": "^5.2.0",
"npm-run-all": "^4.1.3",
"prettier": "^2.0.5",
"rimraf": "^2.6.2",
"source-map-loader": "^0.2.4",
"style-loader": "^1.0.0",
"ts-loader": "^5.2.1",
"typescript": "~3.8",
"webpack": "^4.20.2",
"webpack-cli": "^3.1.2"
},
"jupyterlab": {
"extension": "lib/plugin"
}
}