-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
44 lines (44 loc) · 965 Bytes
/
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
{
"name": "@prettier/parse-srcset",
"version": "3.1.0",
"description": "A spec-conformant JavaScript parser for the HTML5 srcset attribute",
"exports": "./index.js",
"files": [
"index.js",
"index.d.ts"
],
"type": "module",
"directories": {
"test": "tests"
},
"scripts": {
"test": "node --test",
"test-coverage": "c8 node --test",
"release": "np --yolo --no-yarn"
},
"c8": {
"reporter": [
"lcov",
"text"
],
"include": [
"src"
]
},
"repository": "prettier/parse-srcset",
"author": "Alex Bell <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/prettier/parse-srcset/issues"
},
"homepage": "https://github.com/prettier/parse-srcset#readme",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"devDependencies": {
"c8": "8.0.0",
"he": "1.2.0"
},
"packageManager": "[email protected]"
}