123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- {
- "name": "electron",
- "version": "1.6.17",
- "devDependencies": {
- "asar": "^0.11.0",
- "browserify": "^13.1.0",
- "colors": "^1.1.2",
- "dugite": "^1.57.0",
- "electabul": "~0.0.4",
- "electron-docs-linter": "^2.3.3",
- "electron-typescript-definitions": "1.2.7",
- "github": "^9.2.0",
- "heads": "^1.3.0",
- "minimist": "^1.2.0",
- "nugget": "^2.0.1",
- "request": "*",
- "standard": "^8.4.0",
- "standard-markdown": "^2.1.1",
- "sumchecker": "^2.0.2"
- },
- "optionalDependencies": {
- "runas": "^3.0.0"
- },
- "standard": {
- "ignore": [
- "/out",
- "/spec",
- "/vendor"
- ],
- "env": {
- "browser": true
- }
- },
- "private": true,
- "scripts": {
- "bootstrap": "python ./script/bootstrap.py",
- "browserify": "browserify",
- "bump-version": "./script/bump-version.py",
- "build": "python ./script/build.py -c D",
- "clean": "python ./script/clean.py",
- "clean-build": "python ./script/clean.py --build",
- "coverage": "npm run instrument-code-coverage && npm test -- --use-instrumented-asar",
- "instrument-code-coverage": "electabul instrument --input-path ./lib --output-path ./out/coverage/electron.asar",
- "lint": "npm run lint-js && npm run lint-cpp && npm run lint-py && npm run lint-api-docs-js && npm run lint-api-docs",
- "lint-js": "standard && cd spec && standard",
- "lint-cpp": "python ./script/cpplint.py",
- "lint-py": "python ./script/pylint.py",
- "lint-api-docs-js": "standard-markdown docs && standard-markdown docs-translations",
- "lint-api-docs": "electron-docs-linter",
- "create-api-json": "electron-docs-linter docs --outfile=out/electron-api.json --version=$npm_package_version",
- "create-typescript-definitions": "npm run create-api-json && electron-typescript-definitions --in=out/electron-api.json --out=out/electron.d.ts",
- "preinstall": "node -e 'process.exit(0)'",
- "prepare-release": "node ./script/prepare-release.js",
- "prerelease": "python ./script/bootstrap.py -v --dev && npm run build",
- "release": "node ./script/release.js",
- "repl": "python ./script/start.py --interactive",
- "start": "python ./script/start.py",
- "test": "python ./script/test.py"
- }
- }
|