-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
74 lines (74 loc) · 2.19 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
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "cooltipz-css",
"version": "2.3.1",
"description": "Cooltipz.css is a pure CSS tooltip library that is lightweight, modern, accessible, customisable and easy to use",
"scripts": {
"build": "npm run lint:fix && concurrently \"sass --no-source-map src/cooltipz.scss ./cooltipz.min.css --style=compressed\" \"sass --no-source-map src/cooltipz.scss ./cooltipz.css --style=expanded\" && concurrently \"npx postcss cooltipz.min.css --use autoprefixer cssnano --replace --no-map\" \"npx postcss cooltipz.css --use autoprefixer --replace --no-map\"",
"lint:check": "stylelint \"**/*.scss\" --max-warnings=0",
"lint:fix": "stylelint \"**/*.scss\" --max-warnings=0 --fix",
"prepublishOnly": "git-branch-is master && is-git-status-clean && npm run build",
"prepack": "npm run build",
"has-no-changes": "is-git-status-clean"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jackdomleo7/Cooltipz.css.git"
},
"keywords": [
"tooltip",
"cooltipz",
"cooltipz css",
"cooltipz-css",
"hint",
"tooltips",
"cooltips",
"cooltip",
"hints"
],
"author": {
"name": "Jack Domleo",
"url": "https://jackdomleo.dev"
},
"contributors": [
"Jack Domleo <jackdomleo7@gmail.com> (https://jackdomleo.dev)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/jackdomleo7/Cooltipz.css/issues"
},
"homepage": "https://cooltipz.jackdomleo.dev",
"files": [
"src/*",
"cooltipz.css",
"cooltipz.min.css",
"postcss.config.js",
"README.md",
"LICENSE",
"CHANGELOG"
],
"main": "cooltipz.min.css",
"style": "cooltipz.min.css",
"devDependencies": {
"autoprefixer": "^10.4.20",
"concurrently": "^9.1.0",
"cssnano": "^7.0.6",
"git-branch-is": "^4.0.0",
"is-git-status-clean": "^1.0.0",
"postcss": "^8.4.49",
"postcss-cli": "^11.0.0",
"sass": "^1.82.0",
"stylelint": "^16.11.0",
"stylelint-config-standard-scss": "^14.0.0"
},
"peerDependencies": {
"sass": "1.x"
},
"peerDependenciesMeta": {
"sass": {
"optional": true
}
},
"engines": {
"node": ">=14"
}
}