-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.65 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.65 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
{
"name": "@webcomponents-preview/cem-plugins",
"description": "Plugins for @custom-elements-manifest/analyzer to add some more informations for WCP.",
"repository": "webcomponents-preview/cem-plugins",
"version": "0.0.45",
"license": "MIT",
"author": {
"name": "David Enke",
"email": "[email protected]"
},
"publishConfig": {
"access": "public"
},
"type": "module",
"scripts": {
"postinstall": "node --loader ts-node/esm --no-warnings generate-package-types.ts ./package.d.ts",
"lint": "eslint",
"clean": "shx rm -rf dist",
"test": "jest",
"test:ci": "jest --ci --passWithNoTests --reporters=default --reporters=jest-junit",
"test:watch": "jest --watch",
"prebuild": "npm run clean",
"build": "node --loader ts-node/esm --no-warnings esbuild.config.ts"
},
"peerDependencies": {
"@custom-elements-manifest/analyzer": "0.8.x || 0.9.x || 0.10.x"
},
"devDependencies": {
"@custom-elements-manifest/analyzer": "0.10.4",
"@custom-elements-manifest/to-markdown": "0.1.0",
"@enke.dev/lint": "0.6.4",
"@types/jest": "30.0.0",
"@types/node": "22.16.3",
"@types/node-fetch": "2.6.12",
"cross-env": "7.0.3",
"esbuild": "0.25.6",
"eslint": "9.31.0",
"fast-glob": "3.3.3",
"jest": "30.0.4",
"jest-junit": "16.0.0",
"jiti": "2.4.2",
"npm-run-all": "4.1.5",
"prettier": "3.6.2",
"shx": "0.4.0",
"ts-jest": "29.4.0",
"ts-node": "10.9.2",
"typeconv": "2.3.1",
"typescript": "5.8.3",
"web-component-analyzer": "2.0.0"
},
"jest-junit": {
"outputDirectory": "reports",
"outputName": "test.junit.xml",
"usePathForSuiteName": true
}
}