-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
96 lines (96 loc) · 2.24 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "@browserd/stream-provider",
"version": "1.0.0",
"description": "App that streams from the cloud",
"main": "dist/stream-provider/src/node/main.js",
"scripts": {
"lint": "tslint -p .",
"build": "tsc -p .",
"start": "electron .",
"test": "jest --coverage",
"pack": "npm run build && electron-builder --dir",
"dist": "npm run build && electron-builder"
},
"author": {
"name": "bengreenier",
"email": "ben+npm@bengreenier.com"
},
"contributors": [
{
"name": "phongcao",
"email": "phong.caothai@live.com"
},
{
"name": "conradmitchell",
"email": "conradmitchell465@gmail.com"
}
],
"license": "MIT",
"homepage": "https://github.com/bengreenier/browserd",
"build": {
"files": [
"**/src/**/*"
],
"appId": "com.bengreenier.browserd",
"productName": "browserd",
"directories": {
"output": "bin"
},
"deb": {
"depends": [
"gconf2",
"gconf-service",
"libnotify4",
"libappindicator1",
"libxtst6",
"libnss3",
"libasound2",
"libxss1",
"libdbus-1-3",
"libgdk-pixbuf2.0-0",
"libgtk-3-0"
]
},
"linux": {
"executableName": "browserd",
"artifactName": "${productName}-${version}.${ext}",
"target": "deb"
}
},
"jest": {
"collectCoverageFrom": [
"**/src/**/*.ts"
],
"preset": "ts-jest",
"testRegex": [
"/__tests__/.*spec\\.[jt]sx?$"
],
"testResultsProcessor": "jest-sonar-reporter"
},
"dependencies": {
"@browserd/shared": "^1.0.0",
"dotenv": "^8.0.0",
"pino": "^5.12.6",
"sdp-transform": "^2.8.0",
"simple-peer": "^9.3.0",
"strict-event-emitter-types": "^2.0.0",
"twilio": "^3.32.0",
"uuid": "^3.3.2"
},
"devDependencies": {
"@types/dotenv": "^6.1.1",
"@types/jest": "^24.0.13",
"@types/pino": "^5.8.8",
"@types/sdp-transform": "^2.4.0",
"@types/simple-peer": "^6.1.5",
"@types/uuid": "^3.4.4",
"electron": "^5.0.2",
"electron-builder": "^20.43.0",
"jest": "^24.8.0",
"jest-fetch-mock": "^2.1.2",
"jest-sonar-reporter": "^2.0.0",
"ts-jest": "^24.0.2",
"tslint": "^5.17.0",
"typescript": "^3.5.1"
}
}