UNPKG

1.13 kBJSONView Raw
1{
2 "name": "base64-url",
3 "version": "2.3.2",
4 "description": "Base64 encode, decode, escape and unescape for URL applications",
5 "main": "index.js",
6 "files": [
7 "LICENSE",
8 "README.md",
9 "index.js"
10 ],
11 "scripts": {
12 "coverage:open": "open coverage/index.html",
13 "coverage:check": "nyc check-coverage --statements 100 --functions 100 --lines 100 --branches 100",
14 "coverage": "nyc report --reporter=text-lcov | coveralls",
15 "test": "standard --fix && nyc --reporter=html --reporter=text tape test.js"
16 },
17 "repository": {
18 "type": "git",
19 "url": "git://github.com/joaquimserafim/base64-url.git"
20 },
21 "keywords": [
22 "base64",
23 "base64url"
24 ],
25 "author": "@joaquimserafim",
26 "license": "ISC",
27 "bugs": {
28 "url": "https://github.com/joaquimserafim/base64-url/issues"
29 },
30 "homepage": "https://github.com/joaquimserafim/base64-url",
31 "devDependencies": {
32 "coveralls": "^3.0.0",
33 "nyc": "^14.1.1",
34 "pre-commit": "^1.2.2",
35 "standard": "^10.0.3",
36 "tape": "^4.8.0"
37 },
38 "pre-commit": [
39 "test",
40 "coverage:check"
41 ],
42 "engines": {
43 "node": ">=6"
44 }
45}