-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1018 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 1018 Bytes
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
{
"private": true,
"name": "@loopmode/create-electron-app-workspace",
"version": "0.0.0",
"main": "index.js",
"repository": "git@github.com:loopmode/create-electron-app.git",
"author": "Jovica Aleksic <jovica.aleksic@loopmode.de>",
"license": "MIT",
"scripts": {
"build": "lerna run build --stream",
"watch": "lerna run watch --stream --parallel",
"clean": "lerna run clean --stream --parallel",
"test": "lerna run test --stream",
"test:watch": "lerna run test:watch --stream",
"test:run": "cross-env DEBUG=yeoman:generator packages/create-electron-app/lib/index.js ../foo",
"gui": "cd packages/cea-gui && yarn dev",
"rebuild:native": "npm rebuild && lerna run rebuild:native --stream",
"lint": "lerna run lint --stream"
},
"workspaces": {
"packages": [
"local/*",
"packages/*"
]
},
"devDependencies": {
"cross-env": "^5.2.0",
"eslint": "^6.1.0",
"lerna": "^3.16.4",
"prettier": "^1.18.2",
"typescript": "^3.7.2"
}
}