-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.47 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.47 KB
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
{
"name": "git-interfacil",
"version": "1.0.0",
"description": "Projeto de interface gráfica para o GIT.",
"main": "src/main.js",
"scripts": {
"start": "electron-forge start",
"start-prod": "NODE_ENV=production electron-forge start",
"test": "jest",
"package": "electron-forge package",
"make": "electron-forge make",
"format": "prettier . --write",
"format-check": "prettier . --check",
"lint": "eslint .",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/josemayer/git-interfacil.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/josemayer/git-interfacil/issues"
},
"homepage": "https://github.com/josemayer/git-interfacil#readme",
"devDependencies": {
"@electron-forge/cli": "^6.4.2",
"@electron-forge/maker-deb": "^6.4.2",
"@electron-forge/maker-rpm": "^6.4.2",
"@electron-forge/maker-squirrel": "^6.4.2",
"@electron-forge/maker-zip": "^6.4.2",
"@electron-forge/plugin-auto-unpack-natives": "^6.4.2",
"electron": "^26.2.1",
"electron-reloader": "^1.2.3",
"eslint": "^8.49.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "3.0.3"
},
"dependencies": {
"electron-squirrel-startup": "^1.0.0",
"jest-fetch-mock": "^3.0.3"
},
"jest": {
"testEnvironment": "jsdom",
"automock": false,
"setupFiles": [
"./setupJest.js"
]
}
}