-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
37 lines (37 loc) · 824 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
{
"name": "prettysize",
"description": "Convert bytes to other sizes for prettier logging",
"version": "2.0.0",
"main": "./index.js",
"devDependencies": {
"codecov": "^2.3.0",
"eslint": "^4.6.1",
"mocha": "^3.5.3",
"nyc": "^11.2.1"
},
"keywords": [
"size",
"bytes",
"MB",
"megs"
],
"scripts": {
"lint": "eslint --fix .",
"pretest": "npm run lint",
"test": "nyc -r html -r text -r text-summary -r lcov mocha ./tests/*.js",
"publish-coverage": "codecov"
},
"bugs": {
"url": "http://github.com/davglass/prettysize/issues"
},
"licenses": [
{
"type": "BSD",
"url": "https://github.com/davglass/prettysize/blob/master/LICENSE"
}
],
"repository": {
"type": "git",
"url": "http://github.com/davglass/prettysize.git"
}
}