-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 2.14 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
{
"name": "atom-silverstripe",
"version": "4.3.0",
"description": "Provides SilverStripe syntax highlighting and snippets.",
"repository": {
"type": "git",
"url": "https://github.com/gorriecoe/atom-silverstripe.git"
},
"readmeFilename": "README.md",
"homepage": "https://github.com/gorriecoe/atom-silverstripe",
"bugs": {
"url": "https://github.com/gorriecoe/atom-silverstripe/issues"
},
"license": "BSD",
"main": "src/extension",
"engines": {
"atom": ">1.0.0"
},
"providedServices": {
"autocomplete.provider": {
"versions": {
"2.0.0": "getProvider"
}
}
},
"configSchema": {
"comments": {
"type": "string",
"enum": [
{
"value": "true",
"description": "Enable"
},
{
"value": "false",
"description": "Disable"
},
{
"value": "null",
"description": "Inherit from `.silverstripe_sanchez`"
}
],
"default": "null",
"description": "Enable/Disable if snippets should include comments."
},
"useItems": {
"type": "string",
"enum": [
{
"value": "true",
"description": "Enable"
},
{
"value": "false",
"description": "Disable"
},
{
"value": "null",
"description": "Inherit from `.silverstripe_sanchez`"
}
],
"default": "null",
"description": "Enable/Disable if snippets should attempt to inject use item namespacing automatically."
}
},
"consumedServices": {
"busy-signal": {
"versions": {
"1.0.0": "consumeSignal"
}
}
},
"package-deps": [
"busy-signal"
],
"dependencies": {
"atom-package-deps": "^4.6.0",
"silverstripe-sanchez": "^2.0.0"
},
"devDependencies": {
"eslint": "^7.2.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.21.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1"
},
"scripts": {
"lint": "eslint **/*.js",
"lint-fix": "eslint **/*.js --fix"
}
}