forked from mathiasbynens/base64
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 874 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": "base-64",
"version": "0.1.0",
"description": "A robust base64 encoder/decoder that is fully compatible with `atob()` and `btoa()`, written in JavaScript.",
"homepage": "https://mths.be/base64",
"main": "base64.js",
"keywords": [
"codec",
"decoder",
"encoder",
"base64",
"atob",
"btoa"
],
"license": "MIT",
"author": {
"name": "Mathias Bynens",
"url": "https://mathiasbynens.be/"
},
"repository": {
"type": "git",
"url": "https://github.com/mathiasbynens/base64.git"
},
"bugs": "https://github.com/mathiasbynens/base64/issues",
"files": [
"LICENSE-MIT.txt",
"base64.js"
],
"scripts": {
"test": "mocha tests/tests.js"
},
"devDependencies": {
"coveralls": "^2.11.4",
"grunt": "^0.4.5",
"grunt-shell": "^1.1.2",
"grunt-template": "^0.2.3",
"istanbul": "^0.4.0",
"mocha": "^6.2.0",
"regenerate": "^1.2.1"
}
}