forked from brianloveswords/base64url
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 676 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 676 Bytes
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
{
"name": "base64url-es5",
"version": "3.0.0",
"description": "For encoding to/from base64urls",
"main": "index.js",
"files": [
"dist/",
"index.js"
],
"scripts": {
"build": "tsc",
"clean": "rm -f dist/*",
"test": "npm run clean && npm run build && tap test/*.test.js",
"prepublishOnly": "npm run test"
},
"repository": {
"type": "git",
"url": "git://git@github.com:colin-token/base64url.git"
},
"keywords": [
"base64",
"base64url"
],
"author": "Colin Man",
"license": "MIT",
"readmeFilename": "README.md",
"devDependencies": {
"@types/node": "^10.0.0",
"tap": "6.1.1"
},
"dependencies": {}
}