build-tools/package.json

60 строки
1.5 KiB
JSON

{
"name": "build-tools",
"version": "0.2.0",
"engines": {
"node": ">= 12.20.0"
},
"main": "null",
"private": true,
"scripts": {
"lint": "prettier --check \"src/**/*.js\" \"tests/*.js\" \"src/e\"",
"prettier:write": "prettier --write \"src/**/*.js\" \"tests/*.js\" \"src/e\"",
"test": "nyc --reporter=lcov --reporter=text-summary jest --config=jest.fast.json -i",
"test:all": "nyc --reporter=lcov --reporter=text-summary jest --config=jest.slow.json -i"
},
"repository": "https://github.com/electron/build-tools",
"author": "Electron Authors",
"license": "MIT",
"dependencies": {
"@octokit/auth-oauth-device": "^3.1.1",
"@octokit/rest": "^18.5.2",
"chalk": "^2.4.1",
"chrome-cookies-secure": "^2.0.0",
"command-exists": "^1.2.8",
"commander": "^9.0.0",
"cross-zip": "^3.0.0",
"debug": "^4.3.1",
"got": "^11.8.5",
"inquirer": "^8.2.4",
"js-yaml": "^3.13.1",
"lodash": "^4.17.21",
"node-gyp": "^6.1.0",
"open": "^6.4.0",
"path-key": "^3.1.0",
"progress": "^2.0.3",
"readline-sync": "^1.4.10",
"which": "^2.0.2"
},
"devDependencies": {
"husky": "^4.2.0",
"jest": "^27.5.1",
"lint-staged": "^10.0.2",
"nyc": "^14.1.1",
"prettier": "^1.19.1",
"rimraf": "^3.0.0"
},
"lint-staged": {
"*.js": [
"prettier --write"
],
"e": [
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}