forked from jaystack/electron-ga
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.49 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
{
"name": "@hitask/electron-ga",
"version": "3.0.0",
"description": "Google Analytics client for Electron applications",
"main": "lib/index.js",
"typings": "lib/index",
"scripts": {
"build": "rimraf lib && tsc",
"test": "jest"
},
"files": [
"lib",
"LICENSE.md"
],
"repository": {
"type": "git",
"url": "https://github.com/HiTask/electron-ga.git"
},
"keywords": [
"google",
"analytics",
"electron"
],
"authors": [
"Péter Hauszknecht <[email protected]> (https://github.com/jayhasyee)"
],
"license": "ISC",
"bugs": {
"url": "https://github.com/jaystack/electron-ga/issues"
},
"homepage": "https://github.com/jaystack/electron-ga#readme",
"jest": {
"globals": {
"window": true,
"ts-test": {
"tsConfigFile": "tsconfig.json"
}
},
"moduleFileExtensions": [
"ts",
"js"
],
"transform": {
"^.+\\.(ts)$": "./node_modules/ts-jest/preprocessor.js"
},
"testMatch": [
"**/test/**/*.spec.(ts|js)"
],
"testEnvironment": "node"
},
"peerDependencies": {
"electron": "^4.0.0"
},
"devDependencies": {
"@types/jest": "^21.1.8",
"@types/node": "^8.10.4",
"jest": "^21.2.1",
"rimraf": "^2.6.2",
"rollup": "^0.52.1",
"rollup-plugin-typescript2": "^0.8.4",
"rollup-plugin-uglify": "^2.0.1",
"ts-jest": "^21.2.4",
"typescript": "^2.8.1"
},
"dependencies": {
"node-machine-id": "^1.1.9",
"qs": "^6.5.1"
}
}