-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (24 loc) · 1.3 KB
/
package.json
File metadata and controls
29 lines (24 loc) · 1.3 KB
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
{
"name": "motivision",
"version": "1.0.0",
"author": "Kxvin",
"license": "ISC",
"description": "A minimal new tab where Motivation meets Minimalism.",
"scripts": {
"build:chrome": "npm-run-all build:chrome:create-dir build:chrome:files build:chrome:icons build:chrome:rename-manifest",
"build:firefox": "npm-run-all build:firefox:create-dir build:firefox:files build:firefox:icons build:firefox:rename-manifest",
"build:chrome:create-dir": "if not exist dist\\chrome mkdir dist\\chrome",
"build:firefox:create-dir": "if not exist dist\\firefox mkdir dist\\firefox",
"build:chrome:files": "copyfiles -u 1 src\\* dist\\chrome && del dist\\chrome\\manifest.firefox.json",
"build:firefox:files": "copyfiles -u 1 src\\* dist\\firefox && del dist\\firefox\\manifest.chrome.json",
"build:chrome:icons": "copyfiles -u 1 src\\icons\\* dist\\chrome",
"build:firefox:icons": "copyfiles -u 1 src\\icons\\* dist\\firefox",
"build:chrome:rename-manifest": "move dist\\chrome\\manifest.chrome.json dist\\chrome\\manifest.json",
"build:firefox:rename-manifest": "move dist\\firefox\\manifest.firefox.json dist\\firefox\\manifest.json",
"build": "npm-run-all build:chrome build:firefox"
},
"devDependencies": {
"copyfiles": "^2.4.1",
"npm-run-all": "^4.1.5"
}
}