-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
27 lines (27 loc) · 848 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
27
{
"name": "fooltips",
"version": "1.0.1",
"description": "Tooltips with just CSS",
"main": "dist/fooltips.min.css",
"author": "Filipe Linhares <lip.linhares@gmail.com> (http://filipelinhares.com)",
"homepage": "https://github.com/filipelinhares/fooltips#readme",
"repository": "filipelinhares/fooltips",
"bugs": "https://github.com/filipelinhares/fooltips/issues",
"license": "MIT",
"keywords": [
"css",
"tooltips"
],
"scripts": {
"test": "stylelint fooltips.css",
"build": "postcss ./fooltips.css -u postcss-nested postcss-preset-env cssnano -o ./dist/fooltips.min.css --no-map"
},
"devDependencies": {
"cssnano": "^7.0.4",
"postcss-cli": "^11.0.0",
"postcss-nested": "^6.0.1",
"postcss-preset-env": "^9.6.0",
"stylelint": "^16.7.0",
"stylelint-config-standard": "^36.0.1"
}
}