зеркало из https://github.com/electron/get.git
72 строки
1.7 KiB
JSON
72 строки
1.7 KiB
JSON
{
|
|
"name": "@electron/get",
|
|
"version": "0.0.0-development",
|
|
"description": "Utility for downloading artifacts from different versions of Electron",
|
|
"main": "dist/cjs/index.js",
|
|
"module": "dist/esm/index.js",
|
|
"repository": "https://github.com/electron/get",
|
|
"author": "Samuel Attard",
|
|
"license": "MIT",
|
|
"scripts": {
|
|
"build": "tsc && tsc -p tsconfig.esm.json",
|
|
"build:docs": "typedoc --out docs",
|
|
"jest": "jest --coverage",
|
|
"lint": "prettier --check \"src/**/*.ts\"",
|
|
"prepublishOnly": "npm run build",
|
|
"test": "npm run lint && npm run jest",
|
|
"test:nonetwork": "npm run lint && npm run jest -- --testPathIgnorePatterns network.spec"
|
|
},
|
|
"files": [
|
|
"dist/*",
|
|
"README.md"
|
|
],
|
|
"engines": {
|
|
"node": ">=10.13"
|
|
},
|
|
"dependencies": {
|
|
"debug": "^4.1.1",
|
|
"env-paths": "^2.2.0",
|
|
"fs-extra": "^8.1.0",
|
|
"global-agent": "^2.0.2",
|
|
"got": "^10.6.0",
|
|
"progress": "^2.0.3",
|
|
"sanitize-filename": "^1.6.2",
|
|
"sumchecker": "^3.0.1"
|
|
},
|
|
"devDependencies": {
|
|
"@continuous-auth/semantic-release-npm": "^2.0.0",
|
|
"@types/debug": "^4.1.4",
|
|
"@types/fs-extra": "^8.0.0",
|
|
"@types/jest": "^25.1.3",
|
|
"@types/node": "^13.7.6",
|
|
"@types/progress": "^2.0.3",
|
|
"@types/sanitize-filename": "^1.1.28",
|
|
"husky": "^4.2.3",
|
|
"jest": "^25.1.0",
|
|
"lint-staged": "^10.0.8",
|
|
"prettier": "^1.17.1",
|
|
"semantic-release": "^17.0.4",
|
|
"ts-jest": "^25.2.1",
|
|
"typedoc": "^0.16.10",
|
|
"typescript": "^3.4.5"
|
|
},
|
|
"lint-staged": {
|
|
"*.ts": [
|
|
"prettier --write"
|
|
]
|
|
},
|
|
"husky": {
|
|
"hooks": {
|
|
"pre-commit": "lint-staged"
|
|
}
|
|
},
|
|
"keywords": [
|
|
"electron",
|
|
"download",
|
|
"prebuild",
|
|
"get",
|
|
"artifact",
|
|
"release"
|
|
]
|
|
}
|