-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 3.26 KB
/
package.json
File metadata and controls
103 lines (103 loc) · 3.26 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "@flybrainlab/neuromynerva",
"version": "0.2.17",
"description": " NeuroMynerva extension for FlyBrainLab",
"keywords": [
"FlyBrainLab",
"Drosophila",
"fruit fly",
"jupyterlab",
"jupyterlab-extension"
],
"license": "BSD-3-Clause",
"author": {
"name": "FlyBrainLab Dev Team",
"email": "tl2747@columbia.edu"
},
"homepage": "https://github.com/FlyBrainLab/NeuroMynerva/",
"bugs": {
"url": "https://github.com/FlyBrainLab/NeuroMynerva/issues"
},
"files": [
"lib/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}",
"style/**/*.{css,eot,gif,html,jpg,json,png,svg,woff2,ttf}",
"schema/**/*.json",
"style/index.js"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"style": "style/index.css",
"repository": {
"type": "git",
"url": "https://github.com/FlyBrainLab/NeuroMynerva.git"
},
"scripts": {
"clean:node_modules": "rimraf node_modules lib tsconfig.tsbuildinfo",
"dev": "tsc -w",
"test": "jest",
"build": "jlpm run build:lib && jlpm run build:labextension:dev",
"build:prod": "jlpm run build:lib && jlpm run build:labextension",
"build:labextension": "jupyter labextension build .",
"build:labextension:dev": "jupyter labextension build --development True .",
"build:lib": "tsc",
"clean": "jlpm run clean:lib",
"clean:lib": "rimraf lib tsconfig.tsbuildinfo",
"clean:labextension": "rimraf neuromynerva/labextension",
"clean:all": "jlpm run clean:lib && jlpm run clean:labextension",
"eslint": "eslint . --ext .ts,.tsx --fix",
"eslint:check": "eslint . --ext .ts,.tsx",
"install:extension": "jupyter labextension develop --overwrite .",
"watch": "run-p watch:src watch:labextension",
"watch:src": "tsc -w",
"watch:labextension": "jupyter labextension watch ."
},
"dependencies": {
"@fortawesome/fontawesome-free": "^5.15.4",
"@jupyterlab/application": "^2.0.0 || ^3.0.0",
"@jupyterlab/cells": "^2.2.0 || ^3.0.4",
"@jupyterlab/launcher": "^2.1.1 || ^3.0.3",
"@jupyterlab/mainmenu": "^2.2.0 || ^3.0.4",
"@jupyterlab/outputarea": "^2.2.0 || ^3.0.4",
"@jupyterlab/ui-components": "^2.1.1 || ^3.0.3",
"@types/ini": "^1.3.31",
"@types/jquery": "^3.5.16",
"@types/lodash": "^4.14.194",
"@types/three": "~0.151.0",
"@types/tabulator-tables": "^5.4.8",
"ini": "^1.3.5",
"jupyterlab_toastify": "^4.2.1",
"neu3d": "~1.1.4",
"recharts": "^2.6.2",
"tabulator-tables": "^5.5.0",
"three": "~0.151.3"
},
"devDependencies": {
"@jupyterlab/builder": "^3.0.0",
"@types/jest": "^26.0.20",
"@typescript-eslint/eslint-plugin": "^5.59.7",
"@typescript-eslint/parser": "^5.59.7",
"css-loader": "^6.7.4",
"eslint": "^8.41.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^26.6.3",
"npm-run-all": "^4.1.5",
"prettier": "^2.1.1",
"raw-loader": "^4.0.1",
"rimraf": "^3.0.2",
"style-loader": "^1.2.1",
"svg-url-loader": "^5.0.0",
"ts-jest": "^26.5.1",
"typescript": "~5.0.4"
},
"sideEffects": [
"style/*.css",
"style/index.js"
],
"jupyterlab": {
"extension": true,
"schemaDir": "schema",
"outputDir": "neuromynerva/labextension"
},
"styleModule": "style/index.js"
}