forked from oliverschwendener/ueli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.33 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
{
"name": "ueli",
"productName": "ueli",
"version": "7.2.7",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/oliverschwendener/ueli"
},
"homepage": "https://ueli.oliverschwendener.ch",
"author": {
"name": "Oliver Schwendener",
"email": "[email protected]",
"url": "https://github.com/oliverschwendener"
},
"description": "A keystroke launcher for Windows and macOS",
"os": [
"win32",
"darwin"
],
"keywords": [
"keystroke",
"launcher",
"search",
"Windows",
"macOS"
],
"main": "./bundle/main.js",
"scripts": {
"bundle": "./node_modules/.bin/webpack",
"bundle:watch": "./node_modules/.bin/webpack --watch",
"start": "./node_modules/.bin/electron . --enable-logging",
"lint": "./node_modules/.bin/tslint --project tsconfig.json --config tslint.json",
"lint:fix": "./node_modules/.bin/tslint --project tsconfig.json --config tslint.json --fix",
"test": "./node_modules/.bin/jest --config jest.json --silent ./src/tests",
"coverage": "./node_modules/.bin/coveralls < ./coverage/lcov.info",
"package:publish": "./node_modules/.bin/electron-builder --config electron-builder-config.yml --publish onTag",
"package:dir": "./node_modules/.bin/electron-builder --dir --config electron-builder-config.yml --publish never"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint && yarn test && yarn bundle",
"pre-push": "yarn lint && yarn test && yarn bundle"
}
},
"devDependencies": {
"@types/electron-is-dev": "^0.3.0",
"@types/jest": "^23.3.1",
"@types/mathjs": "^4.4.1",
"@types/node-powershell": "^3.1.0",
"app2png": "^1.0.0",
"coveralls": "^3.0.2",
"electron": "^2.0.8",
"electron-builder": "^20.28.3",
"electron-is-dev": "^0.3.0",
"electron-store": "^3.2.0",
"electron-updater": "^3.1.2",
"extract-loader": "^3.0.0",
"file-loader": "^2.0.0",
"fuse.js": "^3.2.1",
"husky": "^0.15.0-rc.8",
"jest": "^23.5.0",
"mathjs": "^5.1.1",
"node-powershell": "^3.3.1",
"ts-jest": "^23.1.4",
"ts-loader": "^4.5.0",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"typescript": "^3.0.3",
"vue": "^2.5.17",
"webpack": "^4.32.2",
"webpack-cli": "^3.3.2",
"webpack-merge": "^4.2.1",
"windows-system-icon": "^0.0.5"
}
}