-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
72 lines (72 loc) · 2.14 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
{
"repository": "https://github.com/electron/fiddle-core",
"homepage": "https://github.com/electron/fiddle-core#readme",
"author": "Charles Kerr <[email protected]>",
"license": "MIT",
"name": "@electron/fiddle-core",
"version": "0.0.0-development",
"description": "Run fiddles from anywhere, on any Electron release",
"main": "dist/index.js",
"bin": {
"fiddle-core": "dist/index.js"
},
"files": [
"dist",
"README.md"
],
"publishConfig": {
"provenance": true
},
"scripts": {
"build": "tsc -b",
"docs": "api-extractor run --local",
"docs:ci": "api-extractor run",
"lint": "run-p lint:eslint lint:prettier",
"lint:fix": "run-p lint:eslint:fix lint:prettier:fix",
"lint:eslint": "eslint \"./src/**/*.ts\" \"./tests/**/*.ts\"",
"lint:eslint:fix": "eslint --fix \"./src/**/*.ts\" \"./tests/**/*.ts\"",
"lint:prettier": "prettier --check package.json src/**/*.ts tests/**/*.ts",
"lint:prettier:fix": "prettier --write package.json src/**/*.ts tests/**/*.ts",
"make": "run-p build",
"prepublishOnly": "npm run make",
"start": "node dist/index.js",
"test": "jest",
"test:ci": "jest --runInBand --coverage"
},
"dependencies": {
"@electron/get": "^2.0.0",
"debug": "^4.3.3",
"env-paths": "^2.2.1",
"extract-zip": "^2.0.1",
"fs-extra": "^10.0.0",
"getos": "^3.2.1",
"node-fetch": "^2.6.1",
"rimraf": "^4.4.1",
"semver": "^7.3.5",
"simple-git": "^3.5.0"
},
"devDependencies": {
"@microsoft/api-extractor": "^7.38.3",
"@types/debug": "^4.1.12",
"@types/fs-extra": "^9.0.13",
"@types/getos": "^3.0.4",
"@types/jest": "^29.5.10",
"@types/node": "^14.14.31",
"@types/node-fetch": "^2.6.9",
"@types/semver": "^7.5.6",
"@typescript-eslint/eslint-plugin": "^5.56.0",
"@typescript-eslint/parser": "^5.56.0",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.7.0",
"nock": "^13.3.8",
"npm-run-all": "^4.1.5",
"prettier": "^2.5.1",
"ts-jest": "^29.1.1",
"typescript": "^5.6.3"
},
"engines": {
"node": ">=14"
}
}