electron/package.json

78 строки
3.0 KiB
JSON
Исходник Обычный вид История

2013-04-14 18:48:35 +04:00
{
2015-04-14 10:59:45 +03:00
"name": "electron",
2018-09-05 20:06:13 +03:00
"version": "4.0.0-nightly.20180905",
"repository": "https://github.com/electron/electron",
"description": "Build cross platform desktop apps with JavaScript, HTML, and CSS",
"devDependencies": {
2016-04-07 04:15:17 +03:00
"asar": "^0.11.0",
"browserify": "^13.1.0",
"check-for-leaks": "^1.0.2",
"clang-format": "^1.2.3",
2017-08-09 20:49:31 +03:00
"colors": "^1.1.2",
"dotenv-safe": "^4.0.4",
"dugite": "^1.45.0",
2016-08-04 02:37:53 +03:00
"electabul": "~0.0.4",
2017-11-20 19:24:39 +03:00
"electron-docs-linter": "^2.3.4",
"electron-typescript-definitions": "^2.0.0",
"folder-hash": "^2.1.1",
"github": "^9.2.0",
2018-06-21 11:06:23 +03:00
"html-entities": "^1.2.1",
"husky": "^0.14.3",
"lint": "^1.1.2",
"minimist": "^1.2.0",
2018-06-21 11:06:23 +03:00
"node-fetch": "^2.1.2",
"nugget": "^2.0.1",
"octicons": "^7.3.0",
"recursive-readdir": "^2.2.2",
"remark-cli": "^4.0.0",
"remark-preset-lint-markdown-style-guide": "^2.1.1",
"request": "^2.88.0",
2018-06-21 11:06:23 +03:00
"semver": "^5.5.0",
"serve": "^6.5.8",
2018-09-13 19:10:51 +03:00
"standard": "^12.0.0",
"standard-markdown": "^5.0.0",
"sumchecker": "^2.0.2",
"temp": "^0.8.3"
},
"standard": {
"ignore": [
"/out",
"/spec",
"/vendor"
2016-03-31 00:56:30 +03:00
],
"env": {
"browser": true
}
},
2013-04-14 18:48:35 +04:00
"private": true,
"scripts": {
2018-05-04 01:44:29 +03:00
"asar": "asar",
"browserify": "browserify",
2016-10-19 05:40:40 +03:00
"bump-version": "./script/bump-version.py",
"check-tls": "python ./script/tls.py",
"clang-format": "find atom/ brightray/ chromium_src/ -iname *.h -o -iname *.cc -o -iname *.mm | xargs clang-format -i",
"lint": "npm run lint:js && npm run lint:cpp && npm run lint:clang-format && npm run lint:py && npm run lint:docs",
"lint:js": "standard && cd spec && standard",
"lint:clang-format": "python script/run-clang-format.py -r -c atom/ chromium_src/ brightray/ || (echo \"\\nCode not formatted correctly.\" && exit 1)",
"lint:cpp": "node ./script/cpplint.js",
"lint:py": "python ./script/pylint.py",
"lint:docs": "remark docs -qf && npm run lint:js-in-markdown && npm run create-typescript-definitions && npm run lint:docs-relative-links",
"lint:docs-relative-links": "python ./script/check-relative-doc-links.py",
"lint:js-in-markdown": "standard-markdown docs",
"create-api-json": "electron-docs-linter docs --outfile=electron-api.json --version=$npm_package_version",
"create-typescript-definitions": "npm run create-api-json && electron-typescript-definitions --in=electron-api.json --out=electron.d.ts",
"preinstall": "node -e 'process.exit(0)'",
"precommit": "python script/run-clang-format.py -r -c atom/ chromium_src/ brightray/ && node ./script/cpplint.js -c && npm run lint:js && remark docs -qf || (echo \"Code not formatted correctly.\" && exit 1)",
"prepack": "check-for-leaks",
"prepush": "check-for-leaks",
"repl": "node ./script/start.js --interactive",
"start": "node ./script/start.js",
"test": "node ./script/spec-runner.js electron/spec"
},
"license": "MIT",
"author": "Electron Community",
"keywords": [
"electron"
]
2013-04-14 18:48:35 +04:00
}