-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
39 lines (39 loc) · 1.33 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
{
"name": "@enhance/custom-element",
"version": "1.2.4",
"description": "Enhance Custom 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",
"test:ci": "web-test-runner \"test/*-test.html\" --node-resolve --playwright --browsers chromium firefox",
"watch": "web-test-runner \"test/*-test.html\" --node-resolve --watch --playwright --browsers chromium firefox",
"dist": "rollup --config ./rollup.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/enhance-dev/enhance-custom-element.git"
},
"author": "Kristofer Joseph <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/enhance-dev/enhance-custom-element/issues"
},
"homepage": "https://github.com/enhance-dev/enhance-custom-element#readme",
"dependencies": {
"@enhance/base-element": "^1.3.2",
"@enhance/custom-element-mixin": "^1.3.1",
"@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.38.1",
"rollup": "^3.29.4"
}
}