forked from sidneys/electron-titlebar-windows
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.28 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
{
"name": "@barchart/electron-titlebar-windows",
"version": "3.0.0",
"description": "Add Windows 10-style Modern UI titlebars to Electron-based desktop applications",
"license": "MIT",
"homepage": "https://sidneys.github.io/electron-titlebar-windows",
"author": {
"name": "sidneys",
"email": "[email protected]",
"url": "https://github.com/sidneys"
},
"repository": {
"type": "git",
"url": "https://github.com/sidneys/electron-titlebar-windows.git"
},
"bugs": {
"url": "https://github.com/sidneys/electron-titlebar-windows/issues"
},
"engines": {
"node": ">=8.0.0"
},
"os": [
"darwin",
"win32",
"linux"
],
"keywords": [
"acrylic",
"css",
"electron",
"metro",
"stylesheet",
"tabs",
"titlebar",
"win32",
"windows"
],
"dependencies": {
"chai": "^4.1.1",
"chai-as-promised": "^7.1.1",
"defaultcss": "^1.1.1",
"domify": "^1.4.0",
"eslint": "^4.4.0",
"mocha": "^3.5.0",
"mocha-better-spec-reporter": "^3.1.0"
},
"devDependencies": {
"electron": "^1.6.11",
"spectron": "^3.7.2"
},
"main": "./lib/titlebar.js",
"scripts": {
"start": "./node_modules/.bin/electron ./app/main.js",
"test": "mocha --reporter mocha-better-spec-reporter"
}
}