-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
93 lines (93 loc) · 2.49 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
85
86
87
88
89
90
91
92
93
{
"name": "@etclabscore/pristine-typescript-electron-menubar",
"version": "0.0.0-development",
"description": "",
"homepage": ".",
"main": "build/electron.js",
"scripts": {
"build": "react-scripts build",
"build:electron": "tsc electron/electron.ts --outDir build",
"start": "react-scripts start",
"version": "cat package.json | grep version | head -1 | awk -F: '{ print $2 }' | sed 's/[\",]//g' | tr -d '[[:space:]]'",
"electron": "npm run build:electron && NODE_ENV=development electron build/electron.js",
"electron:build": "npm run build:electron && electron-builder --publish never",
"lint": "tslint --fix -p .",
"test": "npm run lint && jest --coverage --passWithNoTests"
},
"author": "",
"license": "Apache-2.0",
"devDependencies": {
"@types/jest": "^24.0.13",
"@types/react": "^16.8.20",
"@types/react-dom": "^16.8.4",
"electron-builder": "^20.43.0",
"jest": "^24.7.1",
"react-scripts": "^3.0.1",
"ts-jest": "^24.0.2",
"tslint": "^5.17.0",
"typescript": "^3.5.1",
"electron": "^5.0.4"
},
"dependencies": {
"@qiwi/semantic-release-gh-pages-plugin": "^1.10.0",
"@semantic-release/changelog": "^3.0.4",
"@semantic-release/commit-analyzer": "^6.2.0",
"@semantic-release/git": "^7.0.12",
"@semantic-release/github": "^5.4.0",
"@semantic-release/npm": "^5.1.9",
"@semantic-release/release-notes-generator": "^7.2.0",
"menubar": "^6.0.5",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"semantic-release": "^15.13.16"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"build": {
"productName": "electron-pristine",
"appId": "electron.pristine.etclabscore",
"artifactName": "${productName}-${os}-${arch}-${env.APP_VERSION_GIT_TAG}.${ext}",
"compression": "normal",
"asar": true,
"files": [
"build/**/*",
"node_modules/**/*"
],
"directories": {
"buildResources": "assets"
},
"mac": {
"category": "public.app-category.developer-tools"
},
"linux": {
"target": [
"tar.gz"
]
},
"dmg": {
"iconSize": 128,
"contents": [
{
"x": 180,
"y": 190
},
{
"x": 380,
"y": 190,
"type": "link",
"path": "/Applications"
}
]
}
}
}