-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
35 lines (35 loc) · 1.07 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
{
"name": "base64-url",
"version": "2.3.3",
"description": "Base64 encode, decode, escape and unescape for URL applications",
"main": "index.js",
"files": ["LICENSE", "README.md", "index.js"],
"scripts": {
"coverage:open": "open coverage/index.html",
"coverage:check": "nyc check-coverage --statements 100 --functions 100 --lines 100 --branches 100",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"test": "standard --fix && nyc --reporter=html --reporter=text tape test.js"
},
"repository": {
"type": "git",
"url": "git://github.com/joaquimserafim/base64-url.git"
},
"keywords": ["base64", "base64url"],
"author": "@joaquimserafim",
"license": "ISC",
"bugs": {
"url": "https://github.com/joaquimserafim/base64-url/issues"
},
"homepage": "https://github.com/joaquimserafim/base64-url",
"devDependencies": {
"coveralls": "^3.0.0",
"nyc": "^14.1.1",
"pre-commit": "^1.2.2",
"standard": "^10.0.3",
"tape": "^4.8.0"
},
"pre-commit": ["test", "coverage:check"],
"engines": {
"node": ">=6"
}
}