-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
70 lines (70 loc) · 2.13 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
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "html-ua-styles",
"version": "0.0.8",
"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": "[email protected]",
"url": "https://www.fiskercheung.com/"
},
"sideEffects": false,
"type": "module",
"exports": {
".": "./index.js",
"./*": "./*"
},
"style": "./index.css",
"files": [
"index.js",
"index.css"
],
"scripts": {
"clean": "run-p \"clean:*\"",
"clean:dist": "del-cli index.js index.css",
"build": "node ./scripts/build.js",
"dist": "run-p \"dist:*\"",
"dist:npm": "np --yolo --no-yarn",
"format": "run-p \"format:*\"",
"format:eslint": "yarn lint:eslint --fix",
"format:markdown": "markdownlint-cli2 --fix",
"format:package-json": "sort-package-json \"package.json\" \"packages/*/package.json\"",
"format: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 format:package-json --check",
"lint:prettier": "prettier . --check",
"prepare": "husky",
"release": "run-s clean build dist"
},
"devDependencies": {
"@fisker/eslint-config": "12.1.0",
"@fisker/lint-staged-config": "3.3.2",
"@fisker/markdownlint-cli2-config": "0.0.3",
"@fisker/prettier-config": "5.1.1",
"cheerio": "1.0.0-rc.12",
"css-tree": "2.3.1",
"css-what": "6.1.0",
"del-cli": "5.1.0",
"eslint": "8.56.0",
"husky": "9.0.11",
"lint-staged": "15.2.2",
"markdownlint-cli2": "0.13.0",
"npm-run-all": "4.1.5",
"prettier": "3.2.5",
"sort-package-json": "2.10.0",
"write-prettier-file": "3.0.3"
},
"packageManager": "[email protected]",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}