-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
executable file
·84 lines (84 loc) · 2.42 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
{
"name": "turkish-deasciifier",
"productName": "Turkish Deasciifier",
"version": "1.2.0",
"description": "Tray app for Turkish Deasciifier",
"main": "src/server/main.js",
"scripts": {
"commit": "git-cz",
"start": "electron .",
"build": "electron-builder --publish never --mac --win --linux",
"build:mac": "electron-builder --publish never --mac",
"publish": "electron-builder --publish always --mac --win --linux",
"postinstall": "electron-builder install-app-deps",
"lint": "eslint .",
"lint:fix": "npm run lint -- --fix",
"lint:active": "eslint-nibble .",
"semantic-release": "semantic-release",
"prepare": "husky install",
"pre-commit": "lint-staged"
},
"author": {
"name": "Ridvan Altun",
"email": "[email protected]",
"url": "https://ridvanaltun.github.io/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ridvanaltun/turkish-deasciifier.git"
},
"license": "MIT",
"keywords": [
"turkish",
"deasciifier",
"tray"
],
"bugs": {
"url": "https://github.com/ridvanaltun/turkish-deasciifier/issues"
},
"homepage": "https://github.com/ridvanaltun/turkish-deasciifier#readme",
"dependencies": {
"electron-log": "^4.4.6",
"electron-positioner": "^4.1.0",
"electron-store": "^6.0.1",
"electron-updater": "^4.6.5",
"electron-util": "^0.17.2"
},
"devDependencies": {
"@commitlint/cli": "^16.2.3",
"@commitlint/config-conventional": "^16.2.1",
"@commitlint/cz-commitlint": "^16.2.3",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/npm": "^9.0.1",
"babel-eslint": "^10.1.0",
"commitizen": "^4.2.4",
"electron": "^17.1.2",
"electron-builder": "^22.14.13",
"electron-notarize": "^1.1.1",
"electron-reloader": "^1.2.3",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^16.0.3",
"eslint-nibble": "^8.0.1",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^5.2.0",
"husky": "^7.0.4",
"lint-staged": "^12.3.7",
"prettier": "^2.6.0",
"semantic-release": "^19.0.2"
},
"lint-staged": {
"*.js": [
"eslint --fix"
]
},
"config": {
"commitizen": {
"path": "@commitlint/cz-commitlint"
}
}
}