-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 1.26 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
{
"name": "cpf-generator",
"version": "0.0.1",
"description": "Generate and paste a valid CPF with a single keyboard command",
"main": "main.js",
"productName": "CPF Generator",
"scripts": {
"start": "electron --inspect .",
"electron-rebuild": "electron-rebuild -f",
"build": "npm run package-mac && npm run create-installer-mac",
"package-mac": "electron-packager . --overwrite --asar --platform=darwin --arch=x64 --prune=true --out=build --icon=logo.icns",
"create-installer-mac": "electron-installer-dmg './build/CPF Generator-darwin-x64/CPF Generator.app' cpf-generator-app --out=build --overwrite"
},
"repository": {
"type": "git",
"url": "git+https://github.com/joilson-cisne/cpf-generator.git"
},
"keywords": [
"Electron",
"Brazilian",
"cpf",
"generator"
],
"author": "Joilson Cisne",
"devDependencies": {
"electron": "^4.0.4",
"electron-installer-dmg": "^2.0.0",
"electron-packager": "^13.0.1",
"electron-rebuild": "^1.8.4"
},
"dependencies": {
"gerador-validador-cpf": "^3.1.3",
"robotjs": "^0.5.1"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/joilson-cisne/cpf-generator/issues"
},
"homepage": "https://github.com/joilson-cisne/cpf-generator#readme"
}