-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
85 lines (85 loc) · 2.1 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
{
"name": "drop",
"version": "0.0.1-alpha.7",
"description": "Color-Picker Tool built on Electron",
"main": "src/main/main.js",
"scripts": {
"start": "./node_modules/.bin/electron .",
"lint": "./node_modules/.bin/eslint -c .eslintrc.json --fix .",
"test": "mocha",
"build": "electron-builder build --publish never",
"release": "electron-builder build --publish always"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint && npm test",
"pre-push": "npm run lint && npm test"
}
},
"build": {
"appId": "com.electron.drop",
"productName": "Drop",
"copyright": "Copyright © 2020 Lennart Hase",
"asar": true,
"win": {
"icon": "./src/assets/img/icon.ico",
"publish": [
"github"
]
},
"linux": {
"icon": "./src/assets/img/icon@512x512.png",
"category": "Utility",
"publish": [
"github"
]
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true
}
},
"repository": {
"type": "git",
"url": "https://github.com/motorlatitude/Drop.git"
},
"author": "Lennart Hase",
"license": "GNU GPL V3.0",
"keywords": [
"electron",
"color-picker"
],
"bugs": {
"url": "https://github.com/motorlatitude/Drop/issues"
},
"devDependencies": {
"chai": "^4.2.0",
"electron": "^7.3.2",
"electron-builder": "^22.8.1",
"eslint": "^6.8.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-mocha": "^6.3.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-security-node": "^1.0.12",
"husky": "^4.3.0",
"mocha": "^7.2.0",
"prettier": "^1.19.1",
"spectron": "^9.0.0"
},
"dependencies": {
"@sentry/electron": "^1.5.2",
"codeflask": "^1.4.1",
"color-namer": "^1.4.0",
"dotenv": "^8.2.0",
"electron-log": "^4.2.4",
"electron-store": "^5.2.0",
"electron-updater": "^4.3.5",
"glob": "^7.1.6",
"moment": "^2.28.0",
"mousetrap": "^1.6.5",
"require-from-string": "^2.0.2",
"robotjs": "^0.6.0",
"svg2png": "^4.1.1"
}
}