-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 835 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 835 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
{
"name": "svn",
"main": "./lib/svn",
"version": "0.0.14",
"description": "Marks lines/files in the editor gutter/treeview that have been added, edited, or deleted since the last commit.",
"keywords": [
"svn",
"vcs"
],
"repository": "https://github.com/andischerer/atom-svn",
"license": "MIT",
"engines": {
"atom": ">=0.200.0"
},
"dependencies": {
"event-kit": "2.0.0",
"jquery": "2.2.0",
"jsdifflib": "1.1.0"
},
"providedServices": {
"atom.repository-provider": {
"versions": {
"0.1.0": "getRepositoryProviderService"
}
}
},
"coffeelintConfig": {
"indentation": {
"level": "error",
"value": 2
},
"line_endings": {
"value": "unix",
"level": "error"
},
"max_line_length": {
"level": "ignore"
}
}
}