-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
49 lines (49 loc) · 1.03 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
{
"name": "atom-perl6-editor-tools",
"main": "./lib/main",
"version": "0.10.7",
"description": "A collection of useful Perl 6 editor tools",
"keywords": [],
"repository": "https://github.com/azawawi/atom-perl6-editor-tools",
"license": "MIT",
"engines": {
"atom": ">=1.0.0 <2.0.0"
},
"dependencies": {
"atom-linter": "^10.0.0",
"atom-package-deps": "^4.0.1",
"atom-space-pen-views": "^2.0.0",
"request": "^2.81.0",
"request-promise": "^4.1.1",
"tmp": "^0.0.31"
},
"providedServices": {
"builder": {
"description": "Builds Perl 6 projects",
"versions": {
"2.0.0": "provideBuilder"
}
},
"hyperclick.provider": {
"versions": {
"0.0.0": "provideHyperclick"
}
},
"linter": {
"versions": {
"1.0.0": "provideLinter"
}
}
},
"package-deps": [
"build",
"file-icons",
"language-perl6",
"hyperclick",
"linter"
],
"devDependencies": {
"babel-eslint": "^7.2.3",
"eslint": "^3.19.0"
}
}