-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
93 lines (93 loc) · 1.92 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "snuggsi",
"license": "MIT",
"version": "2024.10.26-1",
"contributors": [],
"author": [
"Snuggs",
"Brandondees"
],
"keywords": [
"web",
"components",
"custom",
"elements"
],
"description": "Easy Web Components in ~1kB",
"homepage": "https://github.com/devpunks/snuggsi#readme",
"repository": {
"type": "git",
"url": "https://github.com/devpunks/snuggsi"
},
"bugs": {
"url": "https://github.com/devpunks/snuggsi/issues"
},
"workspaces": [],
"main": "index.js",
"browser": "index.js",
"files": [
"/dist/*.min*"
],
"packageManager": "npm@9.5.1",
"module": "./dist/snuggsi.min.es",
"unpkg": "./dist/snuggsi.min.es.js",
"config": {
"PORT": "4321"
},
"exports": {
".": {
"browser": {
"default": "./dist/snuggsi.min.es.js"
}
}
},
"cpu": [
"x64",
"arm64"
],
"os": [
"win32",
"linux",
"darwin",
"android"
],
"engines": {
"npm": ">=9.x",
"node": ">=18.x"
},
"directories": {
"bin": "bin",
"example": "examples"
},
"bin": {
"snuggsi": "bin/snuggsi"
},
"peerDependencies": {},
"devDependencies": {
"snuggsi": ".",
"nyc": "^15.1.0",
"buble": "^0.20",
"jsdom": "^20.0.0",
"standard": "^17.0.0",
"uglify-es": "^3.3.9",
"puppeteer-core": "^15.4.0"
},
"dependencies": {
"koa": "2.13.4",
"koa-cors": "^0.0.16",
"koa-static": "^5.0.0",
"basic-auth": "^2.0.0"
},
"bundleDependencies": [],
"scripts": {
"test": "snuggsi test",
"start": "snuggsi serve",
"package": "snuggsi package",
"postinstall": "echo Post install",
"install": "echo Installing snuggsi",
"preinstall": "echo pre-Installing snuggsi",
"preversion": "echo 'npm preversion (test)'",
"version": "echo 'npm version (build)' # git add -A dist",
"postversion": "echo 'npm postversion (publish)' # git push && git push --tags"
}
}