-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.36 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
{
"name": "@enhance/shadow-element",
"version": "1.0.6",
"description": "Enhance Shadow DOM element base class",
"main": "index.mjs",
"module": "/dist/index.js",
"type": "module",
"scripts": {
"test": "run-s test:setup test:ci",
"test:setup": "npx playwright install-deps",
"test:ci": "web-test-runner \"test/*-test.html\" --node-resolve --playwright --browsers chromium firefox webkit",
"watch": "web-test-runner \"test/*-test.html\" --node-resolve --watch --playwright --browsers chromium firefox webkit",
"dist": "rollup --config ./rollup.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/enhance-dev/enhance-shadow-element.git"
},
"keywords": [],
"author": "Kristofer Joseph <kj@begin>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/enhance-dev/enhance-shadow-element/issues"
},
"homepage": "https://github.com/enhance-dev/enhance-shadow-element#readme",
"dependencies": {
"@enhance/base-element": "^1.3.2",
"@enhance/shadow-element-mixin": "^1.0.2",
"@enhance/template-mixin": "^1.0.3"
},
"devDependencies": {
"@esm-bundle/chai": "^4.3.4-fix.0",
"@rollup/plugin-node-resolve": "^15.2.1",
"@web/test-runner": "^0.17.0",
"@web/test-runner-playwright": "^0.10.1",
"npm-run-all": "^4.1.5",
"playwright": "^1.37.0",
"rollup": "^3.29.4"
}
}