-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
41 lines (41 loc) · 914 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
{
"name": "quietjs-bundle",
"version": "0.1.3",
"description": "A utility to bundle quiet-js in one file",
"main": "index.js",
"files": [
"bundler.mjs",
"template.index.d.ts",
"LICENSE-3RD-PARTY"
],
"scripts": {
"bundle": "node bundler.mjs",
"postinstall": "run-s bundle",
"testbundle": "run-s bundle testbundle:browserify",
"testbundle:browserify": "browserify test/index.js -o test/b.js"
},
"keywords": [
"bundle",
"bundler",
"libquiet",
"quietjs",
"quiet.js",
"quiet-js",
"quiet"
],
"author": "Edgar Onghena",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/edgarogh/quietjs-bundle.git"
},
"dependencies": {
"base64-arraybuffer": "^1.0.2",
"chalk": "^5.3.0",
"npm-run-all": "^4.1.5",
"uglify-js": "^3.17.4"
},
"devDependencies": {
"browserify": "^17.0.0"
}
}