-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.31 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
50
{
"name": "@cfware/nav-menu",
"version": "1.0.0",
"description": "Navigation menu element",
"main": "nav-menu.js",
"exports": "./nav-menu.js",
"type": "module",
"scripts": {
"pretest": "cfware-lint .",
"tests-only": "nyc -s node test.js|tap-yaml-summary",
"test": "npm run -s tests-only",
"posttest": "nyc report --check-coverage"
},
"engines": {
"node": ">=18"
},
"author": "Corey Farrell",
"license": "MIT",
"keywords": [
"custom-elements",
"navigation",
"menu",
"html"
],
"repository": {
"type": "git",
"url": "git+https://github.com/cfware/nav-menu.git"
},
"bugs": {
"url": "https://github.com/cfware/nav-menu/issues"
},
"homepage": "https://github.com/cfware/nav-menu#readme",
"dependencies": {
"@cfware/shadow-element": "^1"
},
"peerDependencies": {
"@cfware-app/icon": "*"
},
"devDependencies": {
"@cfware-app/icon": "file:pkgs/icon",
"@cfware/fastify-test-helper": "^1",
"@cfware/lint": "^4",
"@cfware/nyc": "^1",
"@cfware/tap-selenium-manager": "^3",
"@fortawesome/fontawesome-free": "^6",
"libtap": "^1",
"nyc": "^15",
"tap-yaml-summary": "^0.2"
}
}