fiddle-core/package.json

70 строки
2.1 KiB
JSON
Исходник Постоянная ссылка Обычный вид История

2021-07-26 20:26:32 +03:00
{
"repository": "https://github.com/electron/fiddle-core",
"homepage": "https://github.com/electron/fiddle-core#readme",
2021-07-26 20:26:32 +03:00
"author": "Charles Kerr <charles@charleskerr.com>",
"license": "MIT",
2022-10-06 03:28:07 +03:00
"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"
],
2021-07-26 20:26:32 +03:00
"scripts": {
"build": "tsc -b",
2021-08-07 17:12:21 +03:00
"docs": "api-extractor run --local",
2023-02-17 06:49:01 +03:00
"docs:ci": "api-extractor run",
2021-07-26 20:26:32 +03:00
"lint": "run-p lint:eslint lint:prettier",
"lint:fix": "run-p lint:eslint:fix lint:prettier:fix",
2023-02-24 21:57:24 +03:00
"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",
2021-07-26 20:26:32 +03:00
"make": "run-p build",
2022-10-06 03:28:07 +03:00
"prepublishOnly": "npm run make",
"start": "node dist/index.js",
2021-07-26 20:26:32 +03:00
"test": "jest",
"test:ci": "jest --runInBand --coverage"
},
"dependencies": {
"@electron/get": "^2.0.0",
2022-01-13 22:26:43 +03:00
"debug": "^4.3.3",
2021-07-26 20:26:32 +03:00
"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",
2021-07-26 20:26:32 +03:00
"semver": "^7.3.5",
"simple-git": "^3.5.0"
2021-07-26 20:26:32 +03:00
},
"devDependencies": {
2023-11-27 05:03:37 +03:00
"@microsoft/api-extractor": "^7.38.3",
"@types/debug": "^4.1.12",
2022-01-13 22:26:43 +03:00
"@types/fs-extra": "^9.0.13",
2023-11-27 05:03:37 +03:00
"@types/getos": "^3.0.4",
"@types/jest": "^29.5.10",
"@types/node": "^14.14.31",
2023-11-27 05:03:37 +03:00
"@types/node-fetch": "^2.6.9",
"@types/semver": "^7.5.6",
2023-03-23 23:45:06 +03:00
"@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",
2023-11-27 05:03:37 +03:00
"jest": "^29.7.0",
"nock": "^13.3.8",
2021-07-26 20:26:32 +03:00
"npm-run-all": "^4.1.5",
2022-01-13 22:26:43 +03:00
"prettier": "^2.5.1",
2023-11-27 05:03:37 +03:00
"ts-jest": "^29.1.1",
"typescript": "^5.6.3"
},
"engines": {
"node": ">=14"
2021-07-26 20:26:32 +03:00
}
}