-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 889 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{
"name": "postcss-custom-properties-transformer",
"version": "0.0.0-semantic-release",
"description": "PostCSS plugin to transform custom properties",
"keywords": [
"postcss",
"plugin",
"custom properties",
"transformer"
],
"license": "MIT",
"repository": "privatenumber/postcss-custom-properties-transformer",
"author": "Hiroki Osame <[email protected]>",
"files": [
"lib"
],
"main": "lib/index.js",
"scripts": {
"test": "jest",
"lint": "xo"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"xo",
"jest --bail --findRelatedTests"
]
},
"devDependencies": {
"husky": "^4.2.5",
"jest": "^26.4.2",
"lint-staged": "^10.2.13",
"xo": "^0.33.0"
},
"dependencies": {
"postcss": "^7.0.32",
"postcss-values-parser": "^3.2.1"
}
}