forked from gpinkham/electron-ga
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
75 lines (75 loc) · 1.66 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
73
74
75
{
"name": "@gpinkham/electron-ga",
"version": "1.0.6",
"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": "git+https://github.com/gpinkham/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"
],
"setupFilesAfterEnv": [
"./test/setup-jest.js"
],
"transform": {
"^.+\\.(ts)$": "ts-jest"
},
"testMatch": [
"**/test/**/*.spec.(ts|js)"
],
"testEnvironment": "node",
"moduleNameMapper": {
"^@electron/remote$": "<rootDir>/test/mock/remote.mock.ts"
}
},
"peerDependencies": {},
"devDependencies": {
"@electron/remote": "^2.0.8",
"@types/jest": "^29.2.3",
"@types/node": "^16.17.1",
"electron": "19.0.17",
"jest": "^29.3.1",
"rimraf": "^2.6.2",
"rollup": "^3.5.0",
"rollup-plugin-typescript2": "^0.34.1",
"rollup-plugin-uglify": "^6.0.4",
"ts-jest": "^29.0.3",
"typescript": "^4.9.3"
},
"dependencies": {
"node-machine-id": "^1.1.12",
"qs": "^6.11.0"
}
}