This repository has been archived by the owner on Dec 15, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 34
/
package.json
72 lines (72 loc) · 1.86 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
{
"name": "metrics",
"main": "./lib/metrics",
"version": "1.8.1",
"description": "Help improve Atom by sending usage statistics, exceptions and deprecations to the team",
"repository": "https://github.com/atom/metrics",
"license": "MIT",
"engines": {
"atom": ">0.50.0"
},
"providedServices": {
"metrics-reporter": {
"versions": {
"1.1.0": "provideReporter"
}
}
},
"dependencies": {
"fs-plus": "^3.0.0",
"grim": "^2.0.1",
"telemetry-github": "0.1.1"
},
"devDependencies": {
"standard": "^11.0.1",
"temp": "^0.8.3"
},
"standard": {
"env": [
"browser",
"node",
"atomtest",
"jasmine"
],
"globals": [
"atom"
]
},
"configSchema": {
"dev": {
"title": "Development Settings",
"description": "Please refresh the Atom window after modifying any setting in this section.",
"type": "object",
"properties": {
"verboseMode": {
"title": "Verbose mode",
"type": "boolean",
"default": false,
"description": "When set to `true`, any performed request containing metrics will be logged in console.",
"order": 1
},
"sendMetricsInDevMode": {
"title": "Send metrics in Dev mode",
"type": "boolean",
"default": false,
"description": "By default, Atom does not log anything in Dev mode. Set this param to `true` to log events in dev mode.",
"order": 2
},
"reportingFrequency": {
"title": "Reporting frequency",
"type": "number",
"default": 1440,
"description": "How often does Atom send metrics to GitHub (in minutes). By default it's once a day.",
"order": 3
}
}
}
},
"scripts": {
"lint": "standard --verbose",
"test": "npm run lint && apm test"
}
}