forked from electron/fiddle-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.94 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
{
"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",
"main": "dist/index.js",
"bin": {
"fiddle-core": "dist/index.js"
},
"files": [
"dist",
"README.md"
],
"scripts": {
"build": "tsc -b",
"docs": "api-extractor run --local",
"lint": "run-p lint:eslint lint:prettier",
"lint:fix": "run-p lint:eslint:fix lint:prettier:fix",
"lint:eslint": "eslint \"./src/**/*.ts\"",
"lint:eslint:fix": "eslint --fix \"./src/**/*.ts\"",
"lint:prettier": "prettier --check package.json src/**/*.ts",
"lint:prettier:fix": "prettier --write package.json src/**/*.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",
"semver": "^7.3.5",
"simple-git": "^2.48.0"
},
"devDependencies": {
"@continuous-auth/semantic-release-npm": "^3.0.0",
"@microsoft/api-extractor": "^7.19.4",
"@types/debug": "^4.1.5",
"@types/fs-extra": "^9.0.13",
"@types/getos": "^3.0.1",
"@types/jest": "^27.4.0",
"@types/node": "^14.14.31",
"@types/node-fetch": "^2.5.11",
"@types/semver": "^7.3.9",
"@typescript-eslint/eslint-plugin": "^5.9.1",
"@typescript-eslint/parser": "^5.9.1",
"eslint": "^8.6.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.4.7",
"nock": "^13.2.2",
"npm-run-all": "^4.1.5",
"prettier": "^2.5.1",
"semantic-release": "^19.0.5",
"ts-jest": "^27.1.2",
"typescript": "^4.5.4"
}
}