electron/package.json

35 lines
789 B
JSON
Raw Normal View History

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