-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
46 lines (46 loc) · 1.12 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
{
"name": "base64url-arraybuffer",
"description": "Encode/decode Base64URL data into ArrayBuffers",
"version": "0.1.6",
"homepage": "https://github.com/herrjemand/Base64URL-ArrayBuffer",
"author": {
"name": "Niklas von Hertzen",
"email": "[email protected]",
"url": "http://hertzen.com"
},
"contributors": [
{
"name": "Yuriy Ackermann",
"email": "[email protected]",
"url": "https://jeman.de/"
}
],
"repository": {
"type": "git",
"url": "https://github.com/herrjemand/Base64URL-ArrayBuffer"
},
"bugs": {
"url": "https://github.com/herrjemand/Base64URL-ArrayBuffer/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/herrjemand/Base64URL-ArrayBuffer/blob/master/LICENSE-MIT"
}
],
"main": "lib/base64url-arraybuffer",
"engines": {
"node": ">= 0.6.0"
},
"scripts": {
"test": "grunt nodeunit"
},
"devDependencies": {
"grunt": "^0.4.5",
"grunt-cli": "^0.1.13",
"grunt-contrib-jshint": "^0.11.2",
"grunt-contrib-nodeunit": "^0.4.1",
"grunt-contrib-watch": "^0.6.1"
},
"keywords": []
}