-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
62 lines (62 loc) · 2.42 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "qweather-icons",
"version": "1.6.0",
"description": "Open source weather SVG icons and fonts, for QWeather and all developers",
"author": "QWeather",
"license": "MIT",
"homepage": "https://icons.qweather.com",
"repository": {
"type": "git",
"url": "https://github.com/qwd/Icons.git"
},
"keywords": [
"qweather",
"icons"
],
"hugo-bin": {
"buildTags": "extended"
},
"scripts": {
"icons": "npm run icons-main && npm run icons-font",
"icons-main": "node build/build-svgs.js",
"icons-zip": "cross-env-shell \"rm -rf QWeather-Icons-$npm_package_version && mkdir QWeather-Icons-$npm_package_version && cp -r icons/ QWeather-Icons-$npm_package_version/icons && cp -r font/ QWeather-Icons-$npm_package_version/font && cp LICENSE QWeather-Icons-$npm_package_version && cp README.md QWeather-Icons-$npm_package_version && zip -r9 QWeather-Icons-$npm_package_version.zip QWeather-Icons-$npm_package_version && rm -rf QWeather-Icons-$npm_package_version\"",
"icons-font": "node build/keep-last-icons.js && fantasticon && node build/build-alias.js",
"docs-build:docs": "hugo --cleanDestinationDir",
"docs-build:css": "npx tailwindcss -i ./docs/assets/css/tw.css -o ./docs/assets/css/style.css -m",
"docs-build": "npm run docs-build:css && npm run docs-build:docs",
"docs-server:css": "npx tailwindcss -i ./docs/assets/css/tw.css -o ./docs/assets/css/style.css -w",
"docs-server:docs": "hugo server",
"docs": "run-p docs-server:*",
"build-all": "run-s icons icons-zip docs-build",
"test:linkinator": "linkinator public --recurse --silent --skip \"^(?!http://localhost)\"",
"test:lockfile-lint": "lockfile-lint --allowed-hosts npm --allowed-schemes https: --empty-hostname false --type npm --path package-lock.json",
"test": "run-p --continue-on-error test:*"
},
"devDependencies": {
"autoprefixer": "^10.4.12",
"chalk": "^4.1.2",
"cheerio": "^1.0.0-rc.10",
"cross-env": "^7.0.3",
"fantasticon": "^1.2.3",
"hugo-bin": "^0.102.0",
"linkinator": "^4.1.2",
"lockfile-lint": "^4.10.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.20",
"postcss-cli": "^10.1.0",
"purgecss": "^4.0.3",
"stylelint": "^14.16.1",
"svg-sprite": "^3.0.0-alpha1",
"svgo": "^2.8.0",
"tailwindcss": "^3.3.2",
"vnu-jar": "21.6.11"
},
"engines": {
"node": ">=10"
},
"files": [
"icons/*.svg",
"font",
"!.DS_Store"
]
}