This repository was archived by the owner on Apr 3, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.23 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.23 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-webfontloader",
"version": "0.0.1",
"description": "Provides fallbacks for loading fonts with webfontloader",
"main": "index.js",
"repository": "https://github.com/silvenon/postcss-webfontloader",
"author": "Matija Marohnić <matija.marohnic@gmail.com>",
"license": "MIT",
"keywords": [
"postcss",
"postcss-plugin",
"css",
"font",
"fallback",
"webfontloader"
],
"scripts": {
"prelint": "eslint --print-config index.js | eslint-config-prettier-check",
"lint": "eslint . --report-unused-disable-directives",
"test": "jest",
"prepublishOnly": "yarn lint && yarn test"
},
"dependencies": {
"postcss": "^8.1.1"
},
"devDependencies": {
"eslint": "^7.1.0",
"eslint-config-prettier": "^6.3.0",
"eslint-plugin-jest": "^24.0.2",
"eslint-plugin-prettier": "^3.0.0",
"husky": "^7.0.0",
"jest": "^27.0.3",
"lint-staged": "^11.0.0",
"prettier": "^2.0.5"
},
"prettier": {
"singleQuote": true,
"semi": false,
"trailingComma": "es5"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "yarn prepublishOnly"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
}
}