-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.12 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.12 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "html-ua-styles",
"version": "0.3.1",
"description": "User agent stylesheet defined in the WHATWG HTML specification.",
"homepage": "https://github.com/prettier/html-ua-styles#readme",
"bugs": {
"url": "https://github.com/prettier/html-styles/issues"
},
"repository": "prettier/html-ua-styles",
"funding": "https://github.com/prettier/html-ua-styles?sponsor=1",
"license": "MIT",
"author": {
"name": "fisker Cheung",
"email": "lionkay@gmail.com",
"url": "https://www.fiskercheung.com/"
},
"sideEffects": false,
"type": "module",
"exports": {
".": "./index.js",
"./*": "./*"
},
"style": "./index.css",
"files": [
"index.js",
"index.css"
],
"scripts": {
"build": "node ./scripts/build.js",
"clean": "run-p \"clean:*\"",
"clean:dist": "del-cli index.js index.css",
"dist": "run-p \"dist:*\"",
"dist:npm": "release-it",
"fix": "run-p \"fix:*\"",
"fix:eslint": "yarn lint:eslint --fix",
"fix:markdown": "markdownlint-cli2 --fix",
"fix:package-json": "sort-package-json \"package.json\" \"packages/*/package.json\"",
"fix:prettier": "yarn lint:prettier --write",
"lint": "run-p \"lint:*\"",
"lint:eslint": "eslint \"**/*.{js,jsx,mjs,cjs,vue}\"",
"lint:markdown": "markdownlint-cli2",
"lint:package-json": "yarn run fix:package-json --check",
"lint:prettier": "prettier . --check",
"prepare": "husky",
"release": "run-s clean build dist"
},
"devDependencies": {
"@fisker/eslint-config": "15.2.0",
"@fisker/lint-staged-config": "3.3.5",
"@fisker/markdownlint-cli2-config": "0.0.3",
"@fisker/prettier-config": "5.2.0",
"cheerio": "1.1.2",
"css-tree": "3.1.0",
"css-what": "7.0.0",
"del-cli": "7.0.0",
"eslint": "9.39.2",
"husky": "9.1.7",
"lint-staged": "16.2.7",
"markdownlint-cli2": "0.20.0",
"npm-run-all": "4.1.5",
"prettier": "3.7.4",
"release-it": "19.1.0",
"sort-package-json": "3.6.0",
"write-prettier-file": "3.0.3"
},
"packageManager": "yarn@4.12.0",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}