-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 940 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 940 Bytes
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
{
"name": "drowjs",
"version": "1.0.3",
"description": "The Tiny, Object-Based Web Component Library.",
"repository": {
"type": "git",
"url": "https://github.com/johnfacey/drowjs.git"
},
"main": "drow.js",
"module": "drow.js",
"types": "drow.d.ts",
"files": [
"drow.js",
"drow.d.ts",
"dist"
],
"keywords": [
"javascript",
"web",
"components",
"html",
"shadow",
"dom"
],
"author": "John Facey II",
"license": "ISC",
"scripts": {
"build": "npm run clean && npm run minify",
"clean": "rm -rf dist/*",
"doc": "jsdoc README.md drow.js -d docs",
"server": "http-server",
"test": "echo \"Validating build...\" && npm run build && echo \"Build integrity check passed.\"",
"minify": "terser drow.js -o dist/drow.min.js --compress --mangle"
},
"devDependencies": {
"http-server": "^14.1.0",
"jsdoc": "^3.6.4",
"terser": "^5.46.2"
}
}