2013-04-14 08:48:35 -06:00
|
|
|
{
|
2015-04-14 01:59:45 -06:00
|
|
|
"name": "electron",
|
2016-11-16 09:11:28 -07:00
|
|
|
"version": "1.4.7",
|
2013-10-16 19:58:55 -06:00
|
|
|
"devDependencies": {
|
2016-04-06 19:15:17 -06:00
|
|
|
"asar": "^0.11.0",
|
2016-08-21 04:30:14 -06:00
|
|
|
"browserify": "^13.1.0",
|
2016-08-03 17:37:53 -06:00
|
|
|
"electabul": "~0.0.4",
|
2016-11-16 08:33:36 -07:00
|
|
|
"electron-docs-linter": "1.14.1",
|
2016-03-24 13:59:11 -06:00
|
|
|
"request": "*",
|
2016-10-12 19:46:00 -06:00
|
|
|
"standard": "^8.4.0",
|
2016-10-05 15:30:33 -06:00
|
|
|
"standard-markdown": "^2.1.1"
|
2015-10-07 19:25:31 -06:00
|
|
|
},
|
|
|
|
"optionalDependencies": {
|
2015-09-27 06:44:28 -06:00
|
|
|
"runas": "^3.0.0"
|
2013-04-14 08:48:35 -06:00
|
|
|
},
|
2016-03-25 13:42:41 -06:00
|
|
|
"standard": {
|
2016-03-28 23:10:27 -06:00
|
|
|
"ignore": [
|
2016-03-30 15:07:16 -06:00
|
|
|
"/out",
|
|
|
|
"/spec",
|
2016-03-28 23:10:27 -06:00
|
|
|
"/vendor"
|
2016-03-30 15:56:30 -06:00
|
|
|
],
|
|
|
|
"env": {
|
|
|
|
"browser": true
|
|
|
|
}
|
2016-03-25 13:42:41 -06:00
|
|
|
},
|
2013-04-14 08:48:35 -06:00
|
|
|
"private": true,
|
|
|
|
"scripts": {
|
2016-02-10 10:43:29 -07:00
|
|
|
"bootstrap": "python ./script/bootstrap.py",
|
2016-08-21 04:30:14 -06:00
|
|
|
"browserify": "browserify",
|
2016-10-18 20:40:40 -06:00
|
|
|
"bump-version": "./script/bump-version.py",
|
2016-02-10 10:43:29 -07:00
|
|
|
"build": "python ./script/build.py -c D",
|
2016-08-10 16:45:07 -06:00
|
|
|
"clean": "python ./script/clean.py",
|
2016-08-03 15:12:05 -06: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",
|
2016-07-14 17:35:40 -06:00
|
|
|
"lint": "npm run lint-js && npm run lint-cpp && npm run lint-py && npm run lint-api-docs-js && npm run lint-api-docs",
|
2016-06-29 10:13:23 -06:00
|
|
|
"lint-js": "standard && cd spec && standard",
|
2016-03-30 15:07:16 -06:00
|
|
|
"lint-cpp": "python ./script/cpplint.py",
|
2016-09-07 17:23:59 -06:00
|
|
|
"lint-py": "python ./script/pylint.py",
|
2016-10-03 15:35:20 -06:00
|
|
|
"lint-api-docs-js": "standard-markdown docs && standard-markdown docs-translations",
|
2016-09-06 17:53:27 -06:00
|
|
|
"lint-api-docs": "electron-docs-linter docs/api --version=$npm_package_version --outfile=out/electron-api.json",
|
2015-12-10 11:44:11 -07:00
|
|
|
"preinstall": "node -e 'process.exit(0)'",
|
2016-10-17 22:41:57 -06:00
|
|
|
"release": "./script/upload.py -p",
|
2016-03-22 14:26:05 -06:00
|
|
|
"repl": "python ./script/start.py --interactive",
|
2016-01-16 13:31:09 -07:00
|
|
|
"start": "python ./script/start.py",
|
2016-02-10 10:43:29 -07:00
|
|
|
"test": "python ./script/test.py"
|
2013-04-14 08:48:35 -06:00
|
|
|
}
|
|
|
|
}
|