forked from vacu/electron-google-analytics
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1007 Bytes
/
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
{
"name": "electron-google-analytics",
"version": "0.1.0",
"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 --compilers js:babel-register"
},
"keywords": [
"google",
"analytics",
"google analytics"
],
"author": "Eastercow <[email protected]> (http://eastercowz.com)",
"license": "MIT",
"repository": {
"type": "git",
"url": "[email protected]:vacu/electron-google-analytics.git"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"babel-register": "^6.26.0",
"chai": "^4.2.0",
"cross-env": "^5.2.0",
"eslint": "^5.10.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"mocha": "^5.2.0"
},
"dependencies": {
"request": "^2.88.0",
"uuid": "^3.3.2"
}
}