-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.5 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.5 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
54
55
56
57
58
59
60
{
"name": "@rabbitholesyndrome/electron-forge-maker-portable",
"version": "0.2.0",
"description": "Electron Forge Maker for portable Windows apps",
"files": [
"dist"
],
"main": "dist/index.js",
"module": "dist/es/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/rabbit-hole-syndrome/electron-forge-maker-portable.git"
},
"scripts": {
"build": "tsc -b",
"build:es": "tsc -b tsconfig.es.json",
"clean": "rm -rf dist *.tsbuildinfo",
"test": "jest",
"prepublishOnly": "yarn clean && yarn build && yarn build:es"
},
"dependencies": {
"@electron-forge/maker-base": "^7.1.0",
"app-builder-lib": "^23.2.0"
},
"devDependencies": {
"@electron-forge/shared-types": "^7.1.0",
"@types/jest": "^27.5.1",
"@types/node": "*",
"@typescript-eslint/eslint-plugin": "^5.25.0",
"@typescript-eslint/parser": "^5.25.0",
"eslint": "^8.15.0",
"eslint-plugin-import": "^2.26.0",
"jest": "^28.1.0",
"prettier": "^2.3.1",
"ts-jest": "^28.0.3",
"typescript": "^4.7.2"
},
"jest": {
"preset": "ts-jest",
"transform": {
"\\.(ts|tsx)$": "ts-jest"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|js)x?$",
"testEnvironment": "node",
"testPathIgnorePatterns": [
".yarn-cache",
"node_modules",
"dist"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json"
]
},
"packageManager": "yarn@1.22.19"
}