forked from electron/update-electron-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.07 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
{
"name": "update-electron-app",
"version": "0.0.0-development",
"description": "A drop-in module that adds autoUpdating capabilities to Electron apps",
"repository": "https://github.com/electron/update-electron-app",
"main": "index.js",
"types": "index.d.ts",
"license": "MIT",
"dependencies": {
"electron-is-dev": "^0.3.0",
"github-url-to-object": "^4.0.4",
"is-url": "^1.2.4",
"ms": "^2.1.1"
},
"peerDependencies": {
"electron": ">= 6.0.0"
},
"devDependencies": {
"@continuous-auth/semantic-release-npm": "^2.0.0",
"jest": "^22.4.3",
"semantic-release": "^15.13.12",
"standard": "^14.3.4",
"standard-markdown": "^6.0.0",
"tsd": "^0.13.1",
"typescript": "^4.0.3"
},
"scripts": {
"test": "jest && tsd && standard --fix && standard-markdown",
"watch": "jest --watch --notify --notifyMode=change --coverage",
"semantic-release": "semantic-release"
},
"tsd": {
"directory": "test"
},
"standard": {
"env": {
"jest": true
}
},
"jest": {
"testURL": "http://localhost"
}
}