-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 722 Bytes
/
package.json
File metadata and controls
35 lines (35 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
32
33
34
35
{
"name": "js-autoimport",
"main": "./lib/main",
"version": "0.5.1",
"description": "atom autocomplete-plus provider which allows automatic ES6 modules",
"keywords": [
"javascript",
"atom",
"autocomplete",
"autocomplete-plus",
"provider",
"es6",
"modules"
],
"activationCommands": {},
"repository": "https://github.com/tomkis1/js-autoimport",
"license": "MIT",
"engines": {
"atom": ">=0.174.0 <2.0.0"
},
"dependencies": {
"acorn-jsx": "^1.0.1",
"findit": "^2.0.0",
"lodash": "^3.9.3",
"path": "^0.11.14",
"q": "^1.4.1"
},
"providedServices": {
"autocomplete.provider": {
"versions": {
"2.0.0": "provide"
}
}
}
}