forked from flow/flow-for-vscode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (92 loc) · 2.83 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
{
"name": "flow-for-vscode",
"version": "0.4.0",
"publisher": "flowtype",
"description": "Flow support for VS Code",
"displayName": "Flow Language Support",
"engines": {
"vscode": "^1.8.0"
},
"categories": [
"Languages",
"Linters"
],
"private": true,
"activationEvents": [
"onLanguage:javascriptreact",
"onLanguage:javascript"
],
"main": "./build/flowMain",
"contributes": {
"configuration": {
"type": "object",
"title": "Flow Configurations",
"properties": {
"flow.enabled": {
"type": "boolean",
"default": true,
"description": "Is flow enabled"
},
"flow.pathToFlow": {
"type": "string",
"default": "flow",
"description": "Path to flow binary"
},
"flow.stopFlowOnExit": {
"type": "boolean",
"default": true,
"description": "Stop Flow on Exit"
},
"flow.useNPMPackagedFlow": {
"type": "boolean",
"default": false,
"description": "Support using flow through your node_modules folder, WARNING: Checking this box is a security risk. When you open a project we will immediately run code contained within it."
}
}
},
"languages": [{
"id": "javascript",
"aliases": ["JavaScript", "js"],
"filenamePatterns": [
"*.js.flow"
]
}]
},
"scripts": {
"vscode:prepublish": "babel ./lib --out-dir=./build --source-maps",
"compile": "babel ./lib --out-dir=./build --source-maps --watch",
"test": "flow check"
},
"dependencies": {
"cross-spawn": "^4.0.0",
"dequeue": "^1.0.5",
"event-kit": "^2.0.0",
"fs-plus": "^2.8.2",
"fuzzaldrin": "^2.1.0",
"log4js": "^0.6.37",
"lru-cache": "^4.0.1",
"mkdirp": "^0.5.1",
"regenerator-runtime": "^0.9.5",
"rimraf": "^2.5.4",
"rxjs": "^5.0.0-beta.8",
"semver": "^5.3.0",
"shell-quote": "^1.6.0",
"temp": "^0.8.3"
},
"devDependencies": {
"babel-cli": "^6.1.4",
"babel-plugin-transform-flow-strip-types": "^6.0.14",
"babel-preset-es2015": "^6.1.4",
"babel-preset-stage-1": "^6.1.2",
"flow-bin": "^0.33.0",
"vscode": "0.11.x"
},
"icon": "flow-logo.png",
"repository": {
"type": "git",
"url": "https://github.com/flowtype/flow-for-vscode.git"
},
"bugs": {
"url": "https://github.com/flowtype/flow-for-vscode/issues"
}
}