forked from shellscape/gmail-classic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
26 lines (26 loc) · 1003 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
{
"name": "gmail-classic",
"version": "0.1.1",
"description": "CSS for reverting Gmail to the Classic Theme",
"repository": "shellscape/gmail-classic",
"author": "Andrew Powell <andrew@shellscape.org>",
"license": "MPL-2.0",
"scripts": {
"build": "npm run build:chrome",
"build:chrome": "npm-run-all --parallel \"build:task:* -- chrome\"",
"build:task:copy": "f(){ cp gmail.css dist/$1; }; f",
"build:task:icons": "f(){ cp -R assets/icons/* \"dist/$1/assets\"; }; f",
"build:task:manifest": "f(){ cat package.json | mustache - build/$1/manifest.json > dist/$1/manifest.json; }; f",
"build:task:zip": "f(){ cd dist/$1 && npx bestzip ../$1.zip ./* && cd ../..;}; f",
"lint": "stylelint gmail.css --config ./.stylelintrc"
},
"devDependencies": {
"bestzip": "^2.1.2",
"mustache": "^3.0.1",
"npm-run-all": "^4.1.3",
"postcss": "^7.0.6",
"stylelint": "^9.8.0",
"stylelint-config-standard": "^18.2.0",
"stylelint-order": "^1.0.0"
}
}