-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.66 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
{
"name": "tooltippy",
"version": "1.1.0",
"description": "💬 Graceful CSS-only tooltips in under 1kb gzipped.",
"license": "MIT",
"repository": "alcidesqueiroz/tooltippy",
"author": {
"name": "Alcides Queiroz",
"email": "alcidesqueiroz <at> gmail",
"url": "https://www.alcidesqueiroz.com"
},
"engines": {
"node": ">=12"
},
"scripts": {
"clean": "rm -rf dist",
"build-expanded": "stylus src/themes/${THEME}/index.styl --out dist/tooltippy--${THEME}.css",
"build-debug": "stylus src/themes/${THEME}/index.styl --out dist/tooltippy--${THEME}.debug.css --sourcemap-inline",
"build-min": "stylus src/themes/${THEME}/index.styl --out dist/tooltippy--${THEME}.min.css --compress",
"prefixify-expanded": "postcss dist/tooltippy--${THEME}.css -u autoprefixer -r --no-map",
"prefixify-debug": "postcss dist/tooltippy--${THEME}.debug.css -u autoprefixer -r",
"prefixify-min": "postcss dist/tooltippy--${THEME}.min.css -u autoprefixer -r --no-map",
"build-all": "npm run build-min && npm run build-expanded && npm run build-debug",
"postbuild-all": "npm run prefixify-expanded && npm run prefixify-min && npm run prefixify-debug",
"prebuild": "npm run clean && mkdir dist",
"build": "for z in biz high-contrast hipster translucid; do (export THEME=\"${z}\" && npm run build-all); done",
"lint": "stylint .",
"test": "npm run lint && test/test-build"
},
"keywords": [
"tooltips",
"hints",
"CSS-only",
"graceful",
"tiny",
"micro"
],
"devDependencies": {
"autoprefixer": "^10.0.4",
"postcss": "^8.1.14",
"postcss-cli": "^8.3.0",
"stylint": "^2.0.0",
"stylus": "^0.54.8"
}
}