-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.05 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
{
"name": "postcss-longshadow-text",
"version": "1.1.3",
"description": "Postcss plugin for long shadow text",
"main": "index.js",
"license": "MIT",
"repository": "dangvanthanh/postcss-longshadow-text",
"author": {
"name": "Dang Van Thanh",
"email": "dangvanthanh@dangthanh.org",
"url": "https://dangthanh.org"
},
"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"
],
"keywords": [
"css",
"longshadow-text",
"postcss",
"postcss-plugin"
],
"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"
}