-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 868 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 868 Bytes
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
{
"name": "jsdom-web-components",
"version": "1.0.3",
"description": "Isomorphic Web Components for the DOM API.",
"main": "dist/bundle.js",
"scripts": {
"build": "webpack --config webpack.main.config.js",
"build:static": "webpack --config webpack.vendor.config.js",
"test": "playwright test --workers 1",
"test:debug": "playwright test --debug",
"dev": "webpack serve --config webpack.main.config.js"
},
"author": "Jacob Knaack",
"license": "ISC",
"homepage": "https://jacobknaack.me/Web-Components",
"bugs": {
"url": "https://github.com/JacobKnaack/Web-Components/issues"
},
"dependencies": {
"isomorphic-dompurify": "^2.4.0"
},
"devDependencies": {
"@playwright/test": "^1.41.0",
"webpack": "^5.90.1",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.2"
},
"files": [
"dist"
]
}