-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.78 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
{
"name": "babelfish",
"displayName": "Babelfish UAST Viewer",
"description": "Visualize Babelfish Universal Abstract Syntax Trees (UAST) from your editor",
"keywords": [
"babelfish",
"bblfsh",
"uast",
"ast"
],
"homepage": "https://github.com/carlosms/vscode-babelfish",
"repository": {
"type": "git",
"url": "https://github.com/carlosms/vscode-babelfish.git"
},
"version": "0.1.5",
"engines": {
"vscode": "^1.23.0"
},
"publisher": "carlosms",
"icon": "images/icon.png",
"galleryBanner": {
"color": "#f9f7f5",
"theme": "light"
},
"activationEvents": [
"onCommand:babelfish.start"
],
"main": "./build/ext-src/extension.js",
"contributes": {
"commands": [
{
"command": "babelfish.start",
"title": "Parse UAST",
"category": "Bblfsh"
}
]
},
"dependencies": {
"codemirror": "^5.41.0",
"react": "^16.6.1",
"react-codemirror2": "^5.1.0",
"react-dom": "^16.6.1",
"request": "^2.88.0",
"uast-viewer": "^0.4.0"
},
"scripts": {
"vscode:prepublish": "./scripts/build-non-split.js && tsc -p tsconfig.extension.json",
"postinstall": "node ./node_modules/vscode/bin/install",
"start": "react-scripts start",
"build": "./scripts/build-non-split.js && tsc -p tsconfig.extension.json",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject"
},
"devDependencies": {
"@types/jest": "^24.0.11",
"@types/node": "^11.11.3",
"@types/react": "^16.7.18",
"@types/react-dom": "^16.0.11",
"@types/request": "^2.48.1",
"react-scripts": "^2.1.2",
"rewire": "^4.0.1",
"typescript": "^3.2.2",
"vscode": "^1.1.30"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}