forked from jbachhardie/vscode-flow-ls
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.19 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
{
"name": "flow-ls",
"displayName": "flow-ls",
"description": "Javascript Flow typechecking using Flow Language Server",
"version": "0.0.1",
"publisher": "jbachhardie",
"engines": {
"vscode": "^1.19.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onLanguage:javascript",
"onLanguage:javascriptreact"
],
"main": "./build/extension",
"contributes": {
"commands": [
{
"command": "extension.sayHello",
"title": "Hello World"
}
]
},
"scripts": {
"vscode:prepublish": "npm run build",
"build": "babel ./lib --out-dir=./build --source-maps",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "flow && node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"@types/mocha": "^2.2.42",
"@types/node": "^7.0.43",
"babel-cli": "^6.26.0",
"babel-eslint": "^8.0.3",
"babel-preset-env": "^1.6.1",
"babel-preset-flow": "^6.23.0",
"eslint": "^4.6.1",
"eslint-plugin-flowtype": "^2.40.1",
"flow-bin": "^0.61.0",
"typescript": "^2.6.1",
"vscode": "^1.1.6",
"vscode-languageclient": "^3.5.0"
},
"dependencies": {
"flow-language-server": "^0.2.5"
}
}