-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
43 lines (43 loc) · 1.11 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
{
"name": "h2",
"version": "0.1.1alpha",
"description": "A mini browser to embed on top of screens",
"main": "src/main.js",
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"lint": "tslint -c tslint.json -p tsconfig.json",
"start": "npm run build && electron ./dist/main.js",
"lint:fix": "eslint ./src/**/*.js ./tests/**/*.js --fix",
"test": "mocha tests/spec.js --timeout 30000"
},
"build": {
"appId": "com.ipiush.h2"
},
"repository": "https://github.com/poush/H2",
"keywords": [
"electron",
"picture-in-picture",
"browser",
"embed"
],
"author": "poush",
"license": "CC0-1.0",
"devDependencies": {
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"electron": "^2.0.0",
"electron-builder": "^20.28.4",
"eslint": "^5.7.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"mocha": "^5.2.0",
"spectron": "^4.0.0",
"tslint": "^5.19.0",
"typescript": "^3.6.0"
},
"dependencies": {}
}