-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
52 lines (52 loc) · 1.18 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
{
"name": "css-tooltip",
"version": "0.3.4",
"description": "Only CSS lightweight, minimal and simple tooltips",
"main": "dist/css-tooltip.min.css",
"browserslist": [
"> 1%",
"last 1 version",
"Firefox ESR",
"not dead"
],
"postcss": {
"parser": "sugarss",
"map": false,
"plugins": {
"autoprefixer": {},
"cssnano": {}
}
},
"scripts": {
"build": "rm -rf dist && gulp build",
"watch": "gulp watch",
"version": "npm run build && git add -A dist/",
"postversion": "git push && git push --tags && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alterebro/css-tooltip.git"
},
"keywords": [
"CSS",
"tooltip",
"lightweight",
"minimal",
"simple"
],
"author": "Jorge Moreno @alterebro (moro.es)",
"bugs": {
"url": "https://github.com/alterebro/css-tooltip/issues"
},
"homepage": "https://alterebro.github.io/css-tooltip/",
"license": "ISC",
"devDependencies": {
"autoprefixer": "^9.8.6",
"cssnano": "^4.1.10",
"gulp": "^5.0.0",
"gulp-postcss": "^8.0.0",
"gulp-rename": "^1.4.0",
"gulp-sass": "^5.1.0",
"node-sass": "^9.0.0"
}
}