-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 965 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 965 Bytes
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
{
"name": "electron-traywindow-positioner",
"version": "1.2.1",
"description": "Positioning of electron BrowserWindows for tray applications",
"main": "index.js",
"scripts": {
"lint": "eslint . -c .eslintrc --format=node_modules/eslint-formatter-pretty",
"mocha": "mocha test/*.test.js",
"prepublish": "npm test",
"test": "npm run lint && npm run mocha"
},
"keywords": [
"electron",
"traywindow",
"position"
],
"repository": {
"type": "git",
"url": "https://github.com/pixtron/electron-traywindow-positioner.git"
},
"bugs": "https://github.com/pixtron/electron-traywindow-positioner/issues",
"author": "Stefan Aebischer <os@pixtron.ch>",
"license": "MIT",
"devDependencies": {
"chai": "^4.3.7",
"eslint": "^8.46.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-formatter-pretty": "^5.0.0",
"eslint-plugin-import": "^2.28.0",
"mocha": "^10.2.0",
"sinon": "^15.2.0"
}
}