-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
49 lines (49 loc) · 1.59 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
41
42
43
44
45
46
47
48
49
{
"name": "@enhance/element",
"version": "1.4.6",
"description": "Enhance element base class",
"main": "index.mjs",
"module": "/dist/index.js",
"type": "module",
"engine": {
"node": ">=14.0"
},
"scripts": {
"test": "run-s test:setup test:deps test:ci",
"test:setup": "npx playwright install",
"test:deps": "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-element.git"
},
"keywords": [],
"author": "@dam",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/enhance-dev/enhance-element/issues"
},
"homepage": "https://github.com/enhance-dev/enhance-element#readme",
"devDependencies": {
"@enhance/store": "^1.0.2",
"@esm-bundle/chai": "^4.3.4-fix.0",
"@rollup/plugin-node-resolve": "^15.2.1",
"@web/test-runner": "^0.15.0",
"@web/test-runner-mocha": "^0.7.5",
"@web/test-runner-playwright": "^0.9.0",
"npm-run-all": "^4.1.5",
"playwright": "^1.38.1",
"rollup": "^3.29.4"
},
"dependencies": {
"@enhance/base-element": "^1.3.2",
"@enhance/custom-element-mixin": "^1.3.1",
"@enhance/event-handler-mixin": "^1.0.4",
"@enhance/morphdom-mixin": "^1.1.3",
"@enhance/shadow-element-mixin": "^1.0.2",
"@enhance/template-mixin": "^1.0.3"
}
}