forked from jupytercalpoly/jupyterlab-code-snippets
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
132 lines (132 loc) · 4.37 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
130
131
132
{
"name": "jupyterlab-code-snippets",
"version": "2.1.1",
"description": "EXPERIMENTAL: Save, reuse, and share code snippets using JupyterLab Code Snippets",
"keywords": [
"jupyter",
"jupyterlab",
"jupyterlab-extension"
],
"homepage": "https://github.com/jupytercalpoly/jupyterlab-code-snippets.git",
"bugs": {
"url": "https://github.com/jupytercalpoly/jupyterlab-code-snippets.git/issues"
},
"license": "BSD-3-Clause",
"author": "Jay Ahn, Kiran Pinnipati",
"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/jupytercalpoly/jupyterlab-code-snippets.git.git"
},
"scripts": {
"build": "jlpm run build:lib && jlpm run build:labextension:dev",
"build:all": "jlpm run build:labextension",
"build:labextension": "jupyter labextension build .",
"build:labextension:dev": "jupyter labextension build --development True .",
"build:lib": "tsc",
"build:prod": "jlpm run build:lib && jlpm run build:labextension",
"clean": "jlpm run clean:lib",
"clean:all": "jlpm run clean:lib && jlpm run clean:labextension",
"clean:labextension": "rimraf code_snippet/labextension",
"clean:lib": "rimraf lib tsconfig.tsbuildinfo",
"eslint": "eslint . --ext .ts,.tsx --fix",
"eslint:check": "eslint . --ext .ts,.tsx",
"format": "prettier \"src/**/*.{ts, tsx}\" --check",
"install:extension": "jupyter labextension develop --overwrite .",
"prepare": "jlpm run clean && jlpm run build:prod",
"watch": "run-p watch:src watch:labextension",
"watch:labextension": "jupyter labextension watch .",
"watch:src": "tsc -w",
"test": "jest --watch",
"test:cov": "jest --collect-coverage",
"cypress": "cypress open",
"postintall": "husky install",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable"
},
"dependencies": {
"@jupyterlab/application": "^3.0.10",
"@jupyterlab/apputils": "^3.0.8",
"@jupyterlab/cells": "^3.0.10",
"@jupyterlab/celltags": "^3.0.10",
"@jupyterlab/docmanager": "^3.0.10",
"@jupyterlab/docregistry": "^3.0.10",
"@jupyterlab/fileeditor": "^3.0.10",
"@jupyterlab/nbconvert-css": "^3.0.10",
"@jupyterlab/nbformat": "^3.0.5",
"@jupyterlab/notebook": "^3.0.10",
"@jupyterlab/rendermime": "^3.0.9",
"@jupyterlab/services": "^6.0.8",
"@lumino/algorithm": "^1.3.3",
"@lumino/coreutils": "^1.5.3",
"@lumino/dragdrop": "^1.7.1",
"@lumino/messaging": "^1.4.3",
"@lumino/properties": "^1.2.3",
"@lumino/signaling": "^1.4.3",
"@lumino/widgets": "^1.13.2"
},
"devDependencies": {
"@babel/core": "^7",
"@babel/preset-env": "^7.12.1",
"@babel/preset-react": "^7.12.5",
"@jupyterlab/builder": "^3.0.0-rc.13",
"@jupyterlab/testutils": "^3.0.10",
"@testing-library/react": "^11.1.1",
"@types/enzyme": "^3.10.8",
"@types/enzyme-adapter-react-16": "^1.0.6",
"@types/jest": "^26.0.15",
"@types/node-fetch": "^2.5.7",
"@types/react": "^16.9.56",
"@types/react-dom": "^16.9.9",
"@types/react-test-renderer": "^16.9.3",
"@typescript-eslint/eslint-plugin": "^2.27.0",
"@typescript-eslint/parser": "^2.27.0",
"babel-jest": "^26.6.3",
"cypress": "^6.5.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.5",
"eslint": "^7.5.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.20.4",
"husky": "^5.1.3",
"jest": "^26.6.3",
"jest-fetch-mock": "^3.0.3",
"lint-staged": "^10.5.4",
"mkdirp": "^1.0.3",
"npm-run-all": "^4.1.5",
"pinst": "^2.1.6",
"prettier": "^2.2.1",
"react-test-renderer": "^17.0.1",
"rimraf": "^3.0.2",
"ts-jest": "^26.4.4",
"typescript": "~4.1.3"
},
"resolutions": {
"@types/react": "^16.9.56"
},
"sideEffects": [
"style/*.css",
"style/index.js"
],
"jupyterlab": {
"extension": true,
"schemaDir": "schema",
"outputDir": "jupyterlab-code-snippets/labextension"
},
"lint-staged": {
"src/*.{js,jsx,ts,tsx}": [
"eslint --cache --fix"
],
"src/*.js": "eslint --cache --fix"
},
"styleModule": "style/index.js"
}