123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142 |
- {
- "name": "electron",
- "version": "11.0.0-nightly.20200807",
- "repository": "https://github.com/electron/electron",
- "description": "Build cross platform desktop apps with JavaScript, HTML, and CSS",
- "devDependencies": {
- "@electron/docs-parser": "^0.9.1",
- "@electron/typescript-definitions": "^8.7.4",
- "@octokit/rest": "^18.0.3",
- "@primer/octicons": "^10.0.0",
- "@types/basic-auth": "^1.1.3",
- "@types/busboy": "^0.2.3",
- "@types/chai": "^4.2.11",
- "@types/chai-as-promised": "^7.1.3",
- "@types/dirty-chai": "^2.0.2",
- "@types/express": "^4.17.7",
- "@types/fs-extra": "^9.0.1",
- "@types/mocha": "^7.0.2",
- "@types/node": "^12.12.6",
- "@types/semver": "^7.3.1",
- "@types/send": "^0.14.5",
- "@types/split": "^1.0.0",
- "@types/uuid": "^3.4.6",
- "@types/webpack": "^4.41.21",
- "@types/webpack-env": "^1.15.2",
- "@typescript-eslint/eslint-plugin": "^3.6.0",
- "@typescript-eslint/parser": "^3.6.0",
- "asar": "^3.0.3",
- "check-for-leaks": "^1.2.1",
- "colors": "^1.4.0",
- "dotenv-safe": "^4.0.4",
- "dugite": "^1.45.0",
- "eslint": "^7.4.0",
- "eslint-config-standard": "^14.1.1",
- "eslint-plugin-import": "^2.22.0",
- "eslint-plugin-mocha": "^7.0.1",
- "eslint-plugin-node": "^11.1.0",
- "eslint-plugin-standard": "^4.0.1",
- "eslint-plugin-typescript": "^0.14.0",
- "express": "^4.16.4",
- "folder-hash": "^2.1.1",
- "fs-extra": "^9.0.1",
- "husky": "^2.2.0",
- "klaw": "^3.0.0",
- "lint": "^1.1.2",
- "lint-staged": "^10.2.11",
- "minimist": "^1.2.5",
- "nugget": "^2.0.1",
- "null-loader": "^4.0.0",
- "pre-flight": "^1.1.0",
- "remark-cli": "^4.0.0",
- "remark-preset-lint-markdown-style-guide": "^2.1.1",
- "request": "^2.88.2",
- "semver": "^5.6.0",
- "shx": "^0.3.2",
- "standard-markdown": "^6.0.0",
- "sumchecker": "^2.0.2",
- "tap-xunit": "^2.4.1",
- "temp": "^0.8.3",
- "timers-browserify": "1.4.2",
- "ts-loader": "^7.0.5",
- "ts-node": "6.2.0",
- "typescript": "^3.9.6",
- "webpack": "^4.43.0",
- "webpack-cli": "^3.3.12"
- },
- "private": true,
- "scripts": {
- "asar": "asar",
- "generate-version-json": "node script/generate-version-json.js",
- "lint": "node ./script/lint.js && npm run lint:clang-format && npm run lint:docs",
- "lint:js": "node ./script/lint.js --js",
- "lint:clang-format": "python script/run-clang-format.py -r -c atom/ chromium_src/ || (echo \"\\nCode not formatted correctly.\" && exit 1)",
- "lint:cpp": "node ./script/lint.js --cc",
- "lint:objc": "node ./script/lint.js --objc",
- "lint:py": "node ./script/lint.js --py",
- "lint:gn": "node ./script/lint.js --gn",
- "lint:docs": "remark docs -qf && npm run lint:js-in-markdown && npm run create-typescript-definitions && npm run lint:docs-relative-links && npm run lint:check-trailing-whitespace",
- "lint:docs-relative-links": "python ./script/check-relative-doc-links.py",
- "lint:check-trailing-whitespace": "python ./script/check-trailing-whitespace.py",
- "lint:js-in-markdown": "standard-markdown docs",
- "create-api-json": "electron-docs-parser --dir=./",
- "create-typescript-definitions": "npm run create-api-json && electron-typescript-definitions --api=electron-api.json && node spec/ts-smoke/runner.js",
- "gn-typescript-definitions": "npm run create-typescript-definitions && shx cp electron.d.ts",
- "pre-flight": "pre-flight",
- "gn-check": "node ./script/gn-check.js",
- "preinstall": "node -e 'process.exit(0)'",
- "prepack": "check-for-leaks",
- "repl": "node ./script/start.js --interactive",
- "start": "node ./script/start.js",
- "test": "node ./script/spec-runner.js",
- "tsc": "tsc",
- "webpack": "node build/webpack/run-compiler"
- },
- "license": "MIT",
- "author": "Electron Community",
- "keywords": [
- "electron"
- ],
- "husky": {
- "hooks": {
- "pre-commit": "lint-staged",
- "pre-push": "check-for-leaks"
- }
- },
- "lint-staged": {
- "*.{js,ts}": [
- "node script/lint.js --js --fix --only --"
- ],
- "*.{js,ts,d.ts}": [
- "ts-node script/gen-filenames.ts"
- ],
- "*.{cc,mm,c,h}": [
- "python script/run-clang-format.py -r -c --fix"
- ],
- "*.md": [
- "npm run lint:docs"
- ],
- "*.{gn,gni}": [
- "npm run gn-check",
- "python script/run-gn-format.py"
- ],
- "*.py": [
- "node script/lint.js --py --fix --only --"
- ],
- "docs/api/**/*.md": [
- "ts-node script/gen-filenames.ts",
- "python script/check-trailing-whitespace.py --fix",
- "git add filenames.auto.gni"
- ],
- "{*.patch,.patches}": [
- "node script/lint.js --patches --only --",
- "ts-node script/check-patch-diff.ts"
- ],
- "DEPS": [
- "node script/gen-hunspell-filenames.js"
- ]
- },
- "dependencies": {
- "@types/temp": "^0.8.34"
- }
- }
|