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