-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 loc) · 1.88 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
{
"name": "base64-u8array-arraybuffer",
"version": "1.0.3",
"description": "A simple, lightweight, and efficient JavaScript library to manage encoding/decoding between base64 data, Uint8Arrays, and ArrayBuffers",
"keywords": [
"base64",
"uint8array",
"arraybuffer",
"typedarray",
"urlBase64ToUint8Array",
"vapid",
"web push",
"push",
"push notifications"
],
"homepage": "https://github.com/MrPropre/base64-u8array-arraybuffer#readme",
"bugs": {
"url": "https://github.com/MrPropre/base64-u8array-arraybuffer/issues"
},
"license": "MIT",
"author": "MrPropre <adou.alais@gmail.com>",
"files": [
"dist",
"src/*.js"
],
"main": "dist/base64-u8array-arraybuffer.min.js",
"browser": "dist/base64-u8array-arraybuffer.min.js",
"module": "dist/base64-u8array-arraybuffer.esm.js",
"repository": "github:MrPropre/base64-u8array-arraybuffer",
"scripts": {
"build": "rollup -c",
"dev": "rollup -c --watch",
"test": "echo \"Error: no test specified\" && exit 1",
"coverage": "jest --coverage --passWithNoTests",
"coveralls": "npm run coverage && cat ./coverage/lcov.info | coveralls"
},
"devDependencies": {
"@babel/core": "^7.13.10",
"@babel/preset-env": "^7.13.12",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-eslint": "^8.0.1",
"@rollup/plugin-node-resolve": "^11.2.0",
"coveralls": "^3.1.0",
"eslint": "^7.22.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"jest": "^26.6.3",
"rollup": "^2.42.4",
"rollup-plugin-terser": "^7.0.2"
},
"dependencies": {},
"engines": {
"node": ">=10.0.0"
}
}