-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.36 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.36 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
{
"name": "@prettier/html-tags",
"version": "2.2.0",
"description": "List of HTML tags.",
"license": "MIT",
"repository": "prettier/html-tags",
"author": {
"name": "fisker",
"email": "lionkay@gmail.com",
"url": "https://fiskercheung.com"
},
"type": "module",
"exports": {
".": {
"types": "./index.d.ts",
"require": "./index.json",
"default": "./index.js"
},
"./html-tags": "./html-tags.json",
"./html-void-tags": "./html-void-tags.json"
},
"sideEffects": false,
"scripts": {
"fix": "prettier . --write",
"lint": "prettier . --check",
"build": "node scripts/build.js",
"test": "node --test test.js",
"test-coverage": "c8 yarn test",
"release": "release-it"
},
"files": [
"index.js",
"index.json",
"index.d.ts",
"html-tags.json",
"html-void-tags.json"
],
"keywords": [
"html",
"html5",
"tags",
"elements",
"list",
"whatwg",
"w3c"
],
"devDependencies": {
"c8": "10.1.3",
"cheerio": "1.2.0",
"eslint": "9.39.2",
"eslint-plugin-unicorn": "62.0.0",
"outdent": "0.8.0",
"prettier": "3.8.1",
"release-it": "19.2.4",
"write-prettier-file": "3.0.3"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"c8": {
"reporter": [
"lcov",
"text"
]
}
}