forked from atom/settings-view
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.57 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
{
"name": "settings-view",
"version": "0.261.9",
"main": "./lib/main",
"description": "Edit config settings, install packages, and change themes",
"license": "MIT",
"uriHandler": {
"method": "handleURI",
"deferActivation": false
},
"configSchema": {
"packageUpdateConcurrency": {
"title": "Maximum simultaneous package updates",
"description": "Limit how many processes run simultaneously during package updates. If your machine slows down while updating many packages at once, set this value to a small positive number (e.g., `1` or `2`).",
"type": "integer",
"default": -1
}
},
"dependencies": {
"async": "^3.2.0",
"dompurify": "^2.0.17",
"etch": "0.9.0",
"fs-plus": "^3.0.0",
"fuzzaldrin": "^2.1",
"glob": "4.3.1",
"hosted-git-info": "^2.8.9",
"marked": "^4.0.10",
"request": "^2.83.0",
"season": "^6.0.2",
"semver": "^5.3.0",
"underscore-plus": "^1.0.6"
},
"repository": "https://github.com/atom/settings-view",
"engines": {
"atom": "*"
},
"consumedServices": {
"status-bar": {
"versions": {
"^1.0.0": "consumeStatusBar"
}
},
"snippets": {
"versions": {
"0.1.0": "consumeSnippets"
}
}
},
"deserializers": {
"SettingsView": "createSettingsView"
},
"devDependencies": {
"coffeelint": "^1.9.7",
"standard": "^10.0.3"
},
"scripts": {
"lint": "standard"
},
"standard": {
"env": [
"browser",
"node",
"atomtest",
"jasmine"
],
"globals": [
"atom"
]
}
}