-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 722 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 722 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
{
"name": "language-viml",
"author": "Evan Hahn",
"maintainers": [{
"name": "John Gardner",
"email": "gardnerjohng@gmail.com",
"url": "https://github.com/Alhadis"
}],
"description": "Vim Script language support for Atom",
"keywords": ["Vim", "VimScript", "VimL", "Vim Script", "Vi"],
"version": "1.2.3",
"repository": {
"type": "git",
"url": "https://github.com/Alhadis/language-viml.git"
},
"license": "MIT",
"engines": {
"atom": ">0.50.0",
"node": ">=13.2.0"
},
"eslintConfig": {
"extends": "@alhadis",
"overrides": [{
"files": ["bin/update.mjs"],
"rules": {"indent": 0, "no-async-promise-executor": 0}
},{
"files": ["index.js"],
"globals": {"atom": "readonly"}
}]
}
}