-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 881 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 881 Bytes
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
{
"name": "linter-mjml",
"main": "index.js",
"version": "1.2.0",
"description": "A linter for MJML",
"keywords": [
"mjml",
"email"
],
"package-deps": [
"linter",
"language-mjml"
],
"providedServices": {
"linter": {
"versions": {
"1.0.0": "provideLinter"
}
}
},
"readmeFilename": "README.md",
"repository": {
"type": "git",
"url": "git+https://github.com/mjmlio/atom-linter-mjml.git"
},
"bugs": {
"url": "https://github.com/mjmlio/atom-linter-mjml/issues"
},
"license": "MIT",
"engines": {
"atom": ">=1.4.0 <2.0.0"
},
"dependencies": {
"atom-linter": "^8.0.0",
"atom-package-deps": "^4.0.1",
"lodash": "^4.17.4",
"mjml": "^3.3.3"
},
"devDependencies": {
"eslint": "^3.7.1",
"eslint-config-airbnb-base": "^8.0.0",
"eslint-plugin-import": "^2.0.0"
}
}