-
Notifications
You must be signed in to change notification settings - Fork 131
/
package.json
37 lines (37 loc) · 949 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
{
"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": "dist/index.js",
"types": "dist/index.d.ts",
"license": "MIT",
"dependencies": {
"github-url-to-object": "^4.0.4",
"ms": "^2.1.1"
},
"devDependencies": {
"@types/github-url-to-object": "^4.0.1",
"@types/ms": "^0.7.31",
"electron": "^22.0.0",
"jest": "^29.0.0",
"prettier": "^3.0.3",
"standard": "^14.3.4",
"standard-markdown": "^6.0.0",
"tsd": "^0.25.0",
"typescript": "^4.9.4"
},
"scripts": {
"prepare": "tsc",
"test": "jest && tsd && standard --fix && standard-markdown",
"watch": "jest --watch --notify --notifyMode=change --coverage"
},
"tsd": {
"directory": "test"
},
"standard": {
"env": {
"jest": true
}
}
}