This repository has been archived by the owner on Jun 24, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
109 lines (109 loc) · 4.14 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
{
"name": "@aws/awsgluenotebooks-extensions",
"version": "0.1.83",
"description": "A JupyterLab extension.",
"keywords": [
"amazon",
"aws",
"jupyter",
"jupyterlab",
"jupyterlab-extension",
"glue"
],
"homepage": "https://aws.amazon.com/glue/",
"bugs": {
"url": "https://code.amazon.com/packages/AWSGlueNotebookJupyterExtension/trees/mainline/issues"
},
"license": "SEE LICENSES",
"licenses": [
{
"type": "Amazon Software License",
"url": "http://aws.amazon.com/asl"
}
],
"author": {
"name": "Alexandra Tello",
"email": "[email protected]"
},
"files": [
"lib/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}",
"style/**/*.{css,.js,eot,gif,html,jpg,json,png,svg,woff2,ttf}"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"style": "style/index.css",
"repository": {
"url": "https://github.com/aws/aws-glue-studio-notebook-jupyter-extension"
},
"vars": {
"builddir": "build/lib/awsgluenotebooks-extensions"
},
"npm-pretty-much": {
"https://w/?NpmPrettyMuch/UndeclaredTransitiveDependencies": true,
"runTest": "always",
"runRelease": "always"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"scripts": {
"build": "npm run clean && npm run build:lib && npm run build:labextension",
"postbuild": "mkdir -p build/lib/awsgluenotebooks-extensions && rsync package.json $npm_package_vars_builddir && rsync -a --exclude={'*.spec.d.ts','*.spec.js'} lib $npm_package_vars_builddir && rsync -a style $npm_package_vars_builddir",
"build:prod": "npm run clean && npm run build:lib && npm run build:labextension",
"build:labextension": "jupyter labextension build .",
"build:labextension:dev": "jupyter labextension build --development True .",
"credentials": "aws codeartifact login --tool npm --repository aws-glue --domain amazon --domain-owner 590186200215 && aws codeartifact login --tool pip --repository aws-glue --domain amazon --domain-owner 590186200215 && aws codeartifact login --tool twine --repository aws-glue --domain amazon --domain-owner 590186200215",
"patch-and-publish": "npm run build && npm version patch --force && npm publish --access public",
"artifactory": "npm run credentials && npm run patch-and-publish",
"lint:js": "eslint --ext .ts,tsx src/ --cache --max-warnings 0",
"lint:css": "stylelint '**/*.css'",
"lint": "npm run lint:js && npm run lint:css",
"prebuild:lib": "npm run format:check && npm run lint",
"build:lib": "tsc",
"test": "echo 'Tests passed'",
"format:check": "prettier --check \"src/**/**.{ts,tsx,js,json,css,scss,md}\"",
"format:fix": "prettier --write \"src/**/**.{ts,tsx,js,json,css,scss,md}\"",
"clean": "npm run clean:lib",
"clean:lib": "rimraf lib tsconfig.tsbuildinfo",
"clean:labextension": "rimraf AWSGlueNotebookJupyterExtension/labextension",
"clean:all": "npm run clean:lib && npm run clean:labextension",
"release": "npm run eslint && npm run build:lib && npm run postbuild",
"eslint": "eslint . --ext .ts,.tsx --fix",
"eslint:check": "eslint . --ext .ts,.tsx",
"install:extension": "npm run build",
"watch": "run-p watch:src watch:labextension",
"watch:src": "tsc -w",
"watch:labextension": "jupyter labextension watch ."
},
"dependencies": {
"@fortawesome/fontawesome-free": "5.15.2",
"@jupyterlab/application": "^3.6.3",
"@jupyterlab/docmanager": "^3.6.3",
"@jupyterlab/notebook": "^3.6.3"
},
"devDependencies": {
"@jupyterlab/builder": "^3.6.3",
"@typescript-eslint/eslint-plugin": "^4.8.1",
"@typescript-eslint/parser": "^4.8.1",
"eslint": "^7.32.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.1.4",
"npm-run-all": "^4.1.5",
"prettier": "^2.1.1",
"rimraf": "^3.0.2",
"stylelint": "^15.6.0",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-standard": "^26.0.0",
"typescript": "~4.1.3"
},
"overrides": {
"stylelint": "^15.6.0"
},
"sideEffects": [
"style/*.css"
],
"jupyterlab": {
"extension": true,
"outputDir": "AWSGlueNotebookJupyterExtension/labextension"
}
}