-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
86 lines (86 loc) · 2.52 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
{
"name": "ballet-assemble",
"version": "0.8.8",
"description": "Submit ballet modules from within JupyterLab",
"keywords": [
"jupyter",
"jupyterlab",
"jupyterlab-extension"
],
"homepage": "https://github.com/ballet/ballet-assemble",
"bugs": {
"url": "https://github.com/ballet/ballet-assemble/issues"
},
"license": "BSD-3-Clause",
"author": "Micah Smith",
"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"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"style": "style/index.css",
"repository": {
"type": "git",
"url": "https://github.com/ballet/ballet-assemble.git"
},
"scripts": {
"build": "jlpm run build:lib",
"build:labextension": "cd server/ballet_assemble && rimraf labextension && mkdirp labextension && cd labextension && npm pack ../../..",
"build:lib": "tsc",
"build:all": "jlpm run build:labextension",
"clean": "jlpm run clean:lib",
"clean:lib": "rimraf lib tsconfig.tsbuildinfo",
"clean:labextension": "rimraf server/ballet_assemble/labextension",
"clean:all": "jlpm run clean:lib && jlpm run clean:labextension",
"prepare": "jlpm run clean && jlpm run build",
"watch": "tsc -w",
"lint": "jlpm run tslint",
"tslint": "tslint --fix -c tslint.json --project tsconfig.json '**/*{.ts,.tsx}'",
"lint:check": "jlpm run tslint:check",
"tslint:check": "tslint -c tslint.json --project tsconfig.json '**/*{.ts,.tsx}'",
"test": "jest"
},
"dependencies": {
"@andrewhead/python-program-analysis": "^0.4.8",
"@jupyterlab/application": "^2.0.1",
"@jupyterlab/apputils": "^2.0.1",
"@jupyterlab/docregistry": "^2.0.1",
"@jupyterlab/notebook": "^2.0.1",
"@jupyterlab/settingregistry": "^2.0.1",
"@lumino/disposable": "^1.3.1"
},
"devDependencies": {
"@babel/core": "^7",
"@babel/preset-env": "^7",
"@types/jest": "^24",
"@types/react": "~16.9.0",
"jest": "^24",
"prettier": "^1.19.1",
"react": "~16.9.0",
"rimraf": "^2.6.1",
"ts-jest": "^24",
"tslint": "^5.20.1",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.0.1",
"typescript": "^3.7.5"
},
"sideEffects": [
"style/*.css"
],
"jupyterlab": {
"discovery": {
"server": {
"managers": [
"pip"
],
"base": {
"name": "ballet_assemble"
}
}
},
"extension": true,
"schemaDir": "schema"
}
}