-
Notifications
You must be signed in to change notification settings - Fork 83
/
package.json
165 lines (165 loc) · 4.54 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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
{
"name": "language-babel",
"main": "./lib/main",
"version": "2.85.0",
"description": "JavaScript ES201x, React JSX, Flow and GraphQL Grammar. Babel Transpiler",
"keywords": [
"react",
"flow",
"graphql",
"es6",
"jsx",
"javascript",
"es7",
"esnext",
"es2015",
"es2016",
"es2017",
"relay",
"apollo"
],
"activationCommands": [],
"repository": "https://github.com/gandm/language-babel",
"license": "MIT",
"engines": {
"atom": "^1.15.0"
},
"providedServices": {
"autocomplete.provider": {
"versions": {
"2.0.0": "autoCompleteProvider"
}
},
"preview.provider": {
"versions": {
"0.1.0": "provide"
}
}
},
"dependencies": {
"@emmetio/expand-abbreviation": "^0.5.8",
"babel-core": "^6.26.0",
"fs-plus": "^3.0.0",
"fuzzaldrin": "^2.1.0",
"jjv": "^1.0.2",
"js-yaml": "^3.10.0",
"path-is-inside": "^1.0.1",
"strip-json-comments": "^2.0.1"
},
"devDependencies": {
"atom-grammar-test": "<1.0.0",
"babel-eslint": "^6.1.2",
"babel-plugin-syntax-class-properties": "^6.13.0",
"babel-plugin-transform-class-properties": "^6.11.5",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-node5": "^11.1.0",
"chai": "^3.0.0",
"core-decorators": "^0.12.3",
"eslint": "^3.6.0",
"temp": "^0.8.3"
},
"configSchema": {
"autoIndentJSX": {
"title": "Auto Indent JSX",
"description": "Auto Indent JSX using default or eslintrc rules",
"type": "boolean",
"default": false,
"order": 10
},
"taggedTemplateGrammar": {
"title": "JavaScript Tagged Template Literal Grammar Extensions",
"description": "Enter a list of comma separated tagged template literals/regex in the form tagname:scope.name.of.grammar",
"type": "array",
"default": [],
"items": {
"type": "string"
},
"order": 20
},
"emmetCSSAutocomplete": {
"title": "Styled-Components Auto-Complete method",
"description": "Use Emmet to auto-complete in addition to the default CSS completion",
"type": "boolean",
"default": false,
"order": 25
},
"allowLocalOverride": {
"description": "Allow .languagebabel files to overide the settings below. Useful for project based configurations.",
"type": "boolean",
"default": false,
"order": 30
},
"transpileOnSave": {
"description": "Check source code validity on file save. Use \"Create Transpiled Code\" option below to save file.",
"type": "boolean",
"default": false,
"order": 40
},
"createTranspiledCode": {
"description": "Save transpiled code to Babel Transpile Path below.",
"type": "boolean",
"default": false,
"order": 50
},
"disableWhenNoBabelrcFileInPath": {
"description": "Suppress transpile when no .babelrc file is in source file path.",
"type": "boolean",
"default": true,
"order": 60
},
"suppressTranspileOnSaveMessages": {
"description": "Suppress non-error notification messages on each save.",
"type": "boolean",
"default": true,
"order": 70
},
"suppressSourcePathMessages": {
"description": "Suppress messages about file not being inside Babel Source Path.",
"type": "boolean",
"default": true,
"order": 75
},
"createMap": {
"description": "Create separate map file.",
"type": "boolean",
"default": false,
"order": 80
},
"babelMapsAddUrl": {
"description": "Append map file name to transpiled output if \"Create separate map file\" is set.",
"type": "boolean",
"default": true,
"order": 90
},
"babelSourcePath": {
"description": "Babel Source Root based on Project root.",
"type": "string",
"default": "",
"order": 100
},
"babelTranspilePath": {
"description": "Babel Transpile Root based on Project root.",
"type": "string",
"default": "",
"order": 120
},
"babelMapsPath": {
"description": "Babel Maps Root based on Project root.",
"type": "string",
"default": "",
"order": 130
},
"createTargetDirectories": {
"description": "Create transpile output target directories.",
"type": "boolean",
"default": true,
"order": 140
},
"keepFileExtension": {
"description": "Source filename extension becomes target filename extension.",
"type": "boolean",
"default": false,
"order": 150
}
}
}