-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
33 lines (33 loc) · 1011 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{
"name": "electron-desktop-shell",
"version": "1.0.0",
"description": "A minimal browser shell built on Electron.",
"private": true,
"scripts": {
"boot": "npm i -D && lerna bootstrap",
"boot-ci": "npm i -D && lerna bootstrap --no-ci && sh ./scripts/install_electron.sh",
"build": "lerna run build",
"start": "npm run build && npm --prefix ./packages/shell start",
"start:debug": "cross-env SHELL_DEBUG=true DEBUG='electron-chrome-extensions*' npm start",
"test": "lerna run test --stream",
"ci": "lerna run build && lerna run ci --stream"
},
"license": "GPL-3.0",
"author": "Samuel Maddock <sam@samuelmaddock.com>",
"contributors": [
"RabbyHub"
],
"repository": "git@github.com:RabbyHub/electron-desktop-shell.git",
"prettier": {
"printWidth": 100,
"singleQuote": true,
"jsonEnable": false,
"semi": false,
"endOfLine": "lf"
},
"devDependencies": {
"cross-env": "^7.0.3",
"fs-extra": "^10.1.0",
"lerna": "^5.5.1"
}
}