-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
131 lines (131 loc) · 3.26 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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
{
"name": "atom-deepscan",
"main": "./src/main.js",
"version": "1.6.5",
"description": "Detect bugs and quality issues in JavaScript, TypeScript, React and Vue.js more precisely",
"repository": "https://github.com/deepscan/atom-deepscan.git",
"license": "MIT",
"engines": {
"atom": ">=1.13.0 <2.0.0"
},
"configSchema": {
"enable": {
"title": "Enable",
"description": "Controls whether DeepScan inspection should be enabled",
"type": "boolean",
"default": false,
"order": 1
},
"server": {
"title": "Server",
"description": "Configures the DeepScan server url",
"type": "string",
"default": "https://deepscan.io",
"order": 2
},
"proxy": {
"title": "Proxy",
"description": "Configures the proxy. If not set will be taken from the http_proxy environment variable.",
"type": "string",
"default": "",
"order": 3
},
"ignoreConfirmWarning": {
"title": "Controls whether you allow transferring your code to the DeepScan server without prompt. Transferred code is completely deleted right after the inspection.",
"description": "",
"type": "boolean",
"default": false,
"order": 4
},
"ignoreRules": {
"title": "Rules to be ignored",
"description": "Configures the rules to be ignored. e.g., UNUSED_DECL, BAD_WITH_STATEMENT",
"type": "array",
"items": {
"type": "string"
},
"default": [],
"order": 5
},
"showDecorators": {
"title": "Show inline decorators",
"description": "Controls whether the problem of the code should be shown along with the code",
"type": "boolean",
"default": true,
"order": 6
},
"showFullDescription": {
"title": "Show full description",
"description": "Controls whether the full description of the issue should be shown when you hover it. Applied after reopening the file.",
"type": "boolean",
"default": true,
"order": 7
}
},
"scripts": {
"test": "apm test"
},
"keywords": [
"javascript",
"jsx",
"typescript",
"react",
"linters",
"vuejs"
],
"dependencies": {
"atom-babel6-transpiler": "^1.2.0",
"atom-package-deps": "^5.1.0",
"babel-preset-env": "^1.7.0",
"atom-linter": "^10.0.0",
"crypto-random-string": "^1.0.0",
"marked": "^1.1.1",
"dompurify": "^2.0.12",
"axios": "^0.19.2",
"form-data": "^3.0.0"
},
"devDependencies": {},
"package-deps": [
"linter:2.0.0"
],
"providedServices": {
"linter": {
"versions": {
"2.0.0": "provideLinter"
}
}
},
"consumedServices": {
"status-bar": {
"versions": {
"^1.0.0": "consumeStatusBar"
}
}
},
"atomTranspilers": [
{
"glob": "{src,spec}/*.js",
"transpiler": "atom-babel6-transpiler",
"options": {
"setBabelEnv": false,
"babel": {
"presets": [
[
"env",
{
"targets": {
"node": "current"
}
}
]
],
"sourceMaps": "inline",
"babelrc": false
},
"cacheKeyFiles": [
"package.json"
]
}
}
]
}