-
-
Notifications
You must be signed in to change notification settings - Fork 52
/
Copy pathpackage.json
54 lines (54 loc) · 1 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
{
"name": "insight",
"version": "0.12.0",
"description": "Understand how your tool is being used by anonymously reporting usage metrics to Google Analytics or Yandex.Metrica",
"license": "BSD-2-Clause",
"repository": "sindresorhus/insight",
"author": {
"name": "Sindre Sorhus",
"email": "[email protected]",
"url": "https://sindresorhus.com"
},
"type": "module",
"exports": "./lib/index.js",
"sideEffects": false,
"engines": {
"node": ">=18.18"
},
"scripts": {
"test": "xo && ava --timeout=20s"
},
"xo": {
"rules": {
"unicorn/prefer-module": "off"
}
},
"files": [
"lib"
],
"keywords": [
"package",
"stats",
"google",
"analytics",
"track",
"metrics",
"yandex",
"metrica"
],
"dependencies": {
"chalk": "^5.4.1",
"conf": "^13.1.0",
"inquirer": "^12.3.2",
"ky": "^1.7.4",
"lodash.debounce": "^4.0.8",
"os-name": "^6.0.0"
},
"devDependencies": {
"ava": "^6.2.0",
"execa": "^9.5.2",
"sinon": "^19.0.2",
"tough-cookie": "^5.1.0",
"xo": "^0.60.0"
}
}