-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 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
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "@mypreview/unicorn-style-utils",
"version": "1.4.3",
"description": "A collection of SCSS utilities and variables.",
"keywords": [
"css",
"gutenberg",
"mypreview",
"sass",
"scss",
"style",
"unicorn",
"utils"
],
"homepage": "https://github.com/mypreview/unicorn-style-utils#readme",
"bugs": {
"url": "https://github.com/mypreview/unicorn-style-utils/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mypreview/unicorn-style-utils.git"
},
"license": "GPL-3.0-or-later",
"author": "MyPreview",
"sideEffects": false,
"scripts": {
"check-engines": "wp-scripts check-engines",
"check-licenses": "wp-scripts check-licenses",
"format": "wp-scripts format",
"lint:css": "wp-scripts lint-style",
"lint:css-fix": "wp-scripts lint-style --fix",
"lint:js": "wp-scripts lint-js",
"lint:js-fix": "wp-scripts lint-js --fix",
"lint:pkg-json": "wp-scripts lint-pkg-json",
"packages-update": "wp-scripts packages-update",
"prepare": "husky install",
"prepublishOnly": "npm run format && npm run lint:css"
},
"lint-staged": {
"*.{scss,css}": [
"npm run lint:css"
],
"*.{js,ts,tsx}": [
"npm run lint:js",
"npm run format"
]
},
"devDependencies": {
"@wordpress/scripts": "24.6.0",
"husky": "8.0.2",
"lint-staged": "13.0.3",
"prettier": "npm:[email protected]"
},
"publishConfig": {
"access": "public"
}
}