-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1 KB
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
{
"name": "@minimum-viable-web/minibun",
"version": "1.1.0",
"description": "Pure JavaScript implementations of core JS optimization algorithms.",
"type": "module",
"main": "src/index.js",
"exports": {
".": "./src/index.js",
"./dist": "./dist/minibun.js",
"./dist/*": "./dist/*.js"
},
"keywords": [
"tree-shaking",
"minification",
"uglify",
"compression",
"bundler",
"obfuscation",
"javascript",
"css",
"html"
],
"license": "MIT",
"author": "Tolin Simpson",
"repository": {
"type": "git",
"url": "https://github.com/Minimum-Viable-Web/Minibun.git"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"files": [
"src",
"dist",
"LICENSE",
"README.md"
],
"scripts": {
"build": "node build.js",
"build:test": "node build.js --variants",
"test": "node --test"
}
}