-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 960 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
{
"name": "lachesis",
"version": "1.3.11",
"description": "Builds Lachesis for desktop and mobile devices",
"license": "MIT",
"author": {
"name": "Álan Crístoffer",
"email": "[email protected]",
"url": "https://github.com/acristoffers/moirai"
},
"repository": {
"type": "git",
"url": "git://github.com/acristoffers/Lachesis.git"
},
"scripts": {
"clean:all": "bash clean.sh",
"clean": "rm -rf desktop/www desktop/build desktop/dist",
"build": "bash build.sh '--configuration production'",
"prestart": "npm run build",
"start": "cd desktop && npm run run electron www",
"predist": "npm run build",
"dist": "bash dist.sh",
"build:fast": "bash build-fast.sh",
"predist:pack": "npm run build",
"dist:pack": "cd desktop && npm run dist:pack",
"prestart:fast": "npm run build:fast",
"start:fast": "cd desktop && npm run electron www",
"release": "bash release.sh"
}
}