electron/package.json

22 lines
529 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-03-05 12:00:06 +09:00
"version": "0.36.10",
"devDependencies": {
2016-02-19 23:24:56 -05:00
"asar": "^0.10.0",
"eslint": "^2.1.0",
"request": "*"
},
"optionalDependencies": {
2015-09-27 14:44:28 +02:00
"runas": "^3.0.0"
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",
2016-01-20 07:07:39 -07:00
"lint": "python ./script/eslint.py && python ./script/cpplint.py",
2015-12-10 10:44:11 -08:00
"preinstall": "node -e 'process.exit(0)'",
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
}
}