-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.38 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": "@zkreations/tooltips",
"version": "4.2.0",
"description": "Tiny and powerful tooltips with pure css",
"files": [
"scss/**/*.scss",
"tooltips.css",
"tooltips.min.css"
],
"main": "tooltips.min.css",
"scripts": {
"start": "npm-run-all --parallel watch:css serve",
"compile": "npm-run-all compile:css minify:css",
"compile:css": "sass --style expanded --no-source-map scss/:./",
"minify:css": "cleancss -O2 --with-rebase -o tooltips.min.css tooltips.css",
"watch:css": "nodemon --watch scss/ --ext scss --exec \"npm-run-all --sequential compile:css minify:css\"",
"lint:css": "stylelint scss/**/*.scss --config .stylelintrc.json",
"lint:css:fix": "stylelint scss/**/*.scss --config .stylelintrc.json --fix",
"serve": "servor ./ --reload --browse"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zkreations/tooltips.git"
},
"keywords": [
"css",
"tooltips",
"nojs"
],
"author": "Abel Moreira Moreno",
"license": "MIT",
"bugs": {
"url": "https://github.com/zkreations/tooltips/issues"
},
"homepage": "https://github.com/zkreations/tooltips#readme",
"devDependencies": {
"clean-css-cli": "^5.6.3",
"nodemon": "^3.0.2",
"npm-run-all": "^4.1.5",
"sass": "^1.69.5",
"servor": "^4.0.2",
"stylelint": "^16.0.1",
"stylelint-config-standard-scss": "^11.1.0"
}
}