-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
42 lines (42 loc) · 1.06 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
{
"name": "electron-google-analytics",
"version": "1.0.2",
"description": "A library to implement Google Analytics in desktop apps.",
"main": "lib/index.js",
"scripts": {
"build": "babel src -d lib",
"test": "cross-env NODE_ENV=test mocha --require @babel/register"
},
"keywords": [
"google",
"analytics",
"google analytics",
"electron"
],
"author": "Eastercow <[email protected]> (http://eastercowz.com)",
"license": "MIT",
"repository": {
"type": "git",
"url": "[email protected]:vacu/electron-google-analytics.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"devDependencies": {
"@babel/cli": "^7.11.6",
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"@babel/register": "^7.11.5",
"braces": ">=3.0.2",
"chai": "^4.2.0",
"cross-env": "^7.0.2",
"eslint": "^7.9.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.22.0",
"mocha": "^8.1.3"
},
"dependencies": {
"electron-fetch": "^1.7.1",
"uuid": "^8.3.0"
}
}