-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 1.03 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
{
"name": "electron-shortcuts",
"version": "0.4.0",
"description": "Type Safe Electron Shortcuts",
"main": "./dist/src/main/main.js",
"types": "./dist/src/main/main.d.ts",
"scripts": {
"build": "tsc",
"docs": "typedoc --out docs src/main/main.ts",
"docs:publish": "npm run docs && surge --domain https://electron-shortcuts.surge.sh docs/",
"test:unit": "npm run build && jest --config jestconfig.json ./src/test/unit",
"test:e2e": "npm run build && jest --config jestconfig.json --runInBand ./src/test/e2e",
"prepare": "npm run build",
"prepublishOnly": "npm run test:unit"
},
"files": [
"/dist/src/main"
],
"author": "mlrv",
"license": "MIT",
"keywords": [
"electron",
"typescript",
"shortcuts"
],
"devDependencies": {
"@types/jest": "^26.0.19",
"jest": "^26.6.3",
"node-keys-simulator": "^1.0.0",
"spectron": "^13.0.0",
"ts-jest": "^26.4.4",
"typedoc": "^0.20.4",
"typescript": "^4.1.0"
},
"peerDependencies": {
"electron": "^11.1.1"
}
}