-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpackage.json
137 lines (137 loc) · 4.43 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
133
134
135
136
137
{
"name": "jupyterlab-code-snippets",
"version": "2.2.0",
"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": {
"name": "Jay Ahn, Kiran Pinnipati",
"email": "aju960219@gmail.com"
},
"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"
},
"scripts": {
"build": "jlpm run build:lib && jlpm run build:labextension:dev",
"build:labextension": "jupyter labextension build .",
"build:labextension:dev": "jupyter labextension build --development True .",
"build:lib": "tsc",
"build:prod": "jlpm run clean && jlpm run build:lib && jlpm run build:labextension",
"clean": "jlpm run clean:lib",
"clean:labextension": "rimraf jupyterlab-code-snippets/labextension",
"clean:lib": "rimraf lib tsconfig.tsbuildinfo",
"clean:all": "jlpm clean:lib && jlpm clean:labextension",
"eslint": "eslint . --ext .ts,.tsx --fix",
"eslint:check": "eslint . --ext .ts,.tsx",
"format": "prettier \"src/**/*.{ts, tsx}\" --check",
"install:extension": "jlpm build",
"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.5.2",
"@jupyterlab/apputils": "^3.5.2",
"@jupyterlab/cells": "^3.5.0",
"@jupyterlab/celltags": "^3.5.2",
"@jupyterlab/coreutils": "5.5.2",
"@jupyterlab/docmanager": "^3.5.2",
"@jupyterlab/docregistry": "^3.5.0",
"@jupyterlab/fileeditor": "^3.5.2",
"@jupyterlab/nbconvert-css": "^3.5.2",
"@jupyterlab/nbformat": "^3.5.2",
"@jupyterlab/notebook": "^3.5.2",
"@jupyterlab/rendermime": "^3.5.2",
"@jupyterlab/services": "^6.5.2",
"@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.36.0",
"@types/react": "^16.9.56",
"@types/react-dom": "^16.9.9"
},
"devDependencies": {
"@babel/core": "^7",
"@babel/preset-env": "^7.12.1",
"@babel/preset-react": "^7.12.5",
"@jupyterlab/builder": "^3.5.2",
"@jupyterlab/testutils": "^3.5.2",
"@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-test-renderer": "^16.9.3",
"@typescript-eslint/eslint-plugin": "^4.8.1",
"@typescript-eslint/parser": "^4.8.1",
"babel-jest": "^26.6.3",
"cypress": "^6.5.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.5",
"eslint": "^7.14.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.4",
"got": "^11.8.5",
"husky": "^5.1.3",
"jest": "^26.6.3",
"jest-fetch-mock": "^3.0.3",
"lint-staged": "^10.5.4",
"marked": "^4.0.17",
"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"
}