-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.15 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.15 KB
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
{
"name": "postcss-tipsy",
"version": "1.0.3",
"description": "Postcss plugin for a simple tooltip css",
"main": "index.js",
"engines": {
"node": ">=10.0"
},
"scripts": {
"build": "bun build src/index.js --outdir ./. --minify",
"test": "jest-ci --coverage",
"prepare": "husky install"
},
"files": [
"index.js",
"LICENSE",
"README.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/dangvanthanh/postcss-tipsy.git"
},
"keywords": [
"css",
"tooltip",
"postcss",
"postcss-plugin"
],
"author": "Dang Van Thanh",
"license": "MIT",
"bugs": {
"url": "https://github.com/dangvanthanh/postcss-tipsy/issues"
},
"homepage": "https://github.com/dangvanthanh/postcss-tipsy#readme",
"peerDependencies": {
"postcss": "^8.4.5"
},
"devDependencies": {
"@dangvanthanh/prettier-config": "^1.0.0",
"husky": "^8.0.3",
"jest": "29.7.0",
"jest-ci": "^0.1.1",
"lint-staged": "^14.0.1",
"postcss": "8.4.31",
"prettier": "^3.0.3"
},
"lint-staged": {
"*.js": [
"prettier --write"
]
},
"prettier": "@dangvanthanh/prettier-config"
}