forked from lukeed/navaid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 920 Bytes
/
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
{
"name": "@zerodevx/navaid",
"version": "1.2.0-fork.3",
"repository": "zerodevx/navaid",
"description": "Fork of Navaid with shadow dom support",
"umd:name": "navaid",
"unpkg": "dist/navaid.min.js",
"module": "dist/navaid.mjs",
"main": "dist/navaid.js",
"types": "index.d.ts",
"license": "MIT",
"author": {
"name": "Luke Edwards",
"email": "[email protected]",
"url": "https://lukeed.com"
},
"engines": {
"node": ">= 6"
},
"scripts": {
"build": "node builder",
"pretest": "npm run build",
"test": "uvu -r esm test"
},
"files": [
"*.d.ts",
"dist"
],
"keywords": [
"browser",
"client-side",
"router"
],
"dependencies": {
"regexparam": "^1.0.2"
},
"devDependencies": {
"esm": "3.2.25",
"gzip-size": "5.1.1",
"mk-dirs": "2.1.0",
"pretty-bytes": "5.3.0",
"terser": "4.8.0",
"uvu": "0.3.3"
}
}