electron/package.json

79 lines
2.9 KiB
JSON
Raw Normal View History

2013-04-14 14:48:35 +00:00
{
2015-04-14 07:59:45 +00:00
"name": "electron",
2017-11-06 21:11:34 +00:00
"version": "1.8.2-beta.2",
"repository": "https://github.com/electron/electron",
"description": "Build cross platform desktop apps with JavaScript, HTML, and CSS",
"devDependencies": {
2016-04-07 01:15:17 +00:00
"asar": "^0.11.0",
"browserify": "^13.1.0",
"check-for-leaks": "^1.0.2",
2017-08-09 17:49:31 +00:00
"colors": "^1.1.2",
"dotenv-safe": "^4.0.4",
"dugite": "^1.45.0",
2016-08-03 23:37:53 +00:00
"electabul": "~0.0.4",
2017-11-20 16:24:39 +00:00
"electron-docs-linter": "^2.3.4",
"electron-typescript-definitions": "^1.2.11",
"github": "^9.2.0",
"husky": "^0.14.3",
"minimist": "^1.2.0",
"nugget": "^2.0.1",
"remark-cli": "^4.0.0",
"remark-preset-lint-markdown-style-guide": "^2.1.1",
"request": "^2.68.0",
2017-11-23 21:41:14 +00:00
"standard": "^10.0.0",
"standard-markdown": "^4.0.0",
"sumchecker": "^2.0.2",
"temp": "^0.8.3"
},
"standard": {
"ignore": [
"/out",
"/spec",
"/vendor"
2016-03-30 21:56:30 +00:00
],
"env": {
"browser": true
}
},
2013-04-14 14:48:35 +00:00
"private": true,
"scripts": {
2016-02-10 17:43:29 +00:00
"bootstrap": "python ./script/bootstrap.py",
"browserify": "browserify",
2016-10-19 02:40:40 +00:00
"bump-version": "./script/bump-version.py",
2016-02-10 17:43:29 +00:00
"build": "python ./script/build.py -c D",
"rebuild-test-modules": "python ./script/rebuild-test-modules.py",
2016-08-10 22:45:07 +00:00
"clean": "python ./script/clean.py",
"clean-build": "python ./script/clean.py --build",
2017-05-25 21:28:54 +00:00
"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",
2017-05-31 19:42:15 +00:00
"lint": "npm run lint-js && npm run lint-cpp && npm run lint-py && npm run lint-docs",
"lint-js": "standard && cd spec && standard",
"lint-cpp": "python ./script/cpplint.py",
2016-09-07 23:23:59 +00:00
"lint-py": "python ./script/pylint.py",
2017-12-13 22:39:13 +00:00
"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",
2017-05-11 06:22:49 +00:00
"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",
"mock-release": "node ./script/ci-release-build.js",
"preinstall": "node -e 'process.exit(0)'",
"publish-to-npm": "node ./script/publish-to-npm.js",
"prepack": "check-for-leaks",
"prepush": "check-for-leaks",
"prepare-release": "node ./script/prepare-release.js",
"prerelease": "python ./script/bootstrap.py -v --dev && npm run build",
"release": "node ./script/release.js",
2016-03-22 20:26:05 +00:00
"repl": "python ./script/start.py --interactive",
2016-01-16 20:31:09 +00:00
"start": "python ./script/start.py",
2016-02-10 17:43:29 +00:00
"test": "python ./script/test.py"
},
"license": "MIT",
"author": "Electron Community",
"keywords": [
"electron"
2017-12-13 22:39:13 +00:00
],
"dependencies": {
"lint": "^1.1.2"
}
2013-04-14 14:48:35 +00:00
}