-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.2 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"_from": "[email protected]",
"_id": "[email protected]",
"_inBundle": false,
"_integrity": "sha512-/XuKeqWocKsYa/cBY1YbSJSWWqTi4cFgr9S6OyM7PBaPbr9zvNGwWP33vt0uqGhwDdN+y3yhbXVILEUpnwEWGw==",
"_location": "/byte-size",
"_phantomChildren": {},
"_requested": {
"type": "version",
"registry": true,
"raw": "[email protected]",
"name": "byte-size",
"escapedName": "byte-size",
"rawSpec": "5.0.1",
"saveSpec": null,
"fetchSpec": "5.0.1"
},
"_requiredBy": [
"#USER",
"/"
],
"_resolved": "https://registry.npmjs.org/byte-size/-/byte-size-5.0.1.tgz",
"_shasum": "4b651039a5ecd96767e71a3d7ed380e48bed4191",
"_spec": "[email protected]",
"_where": "/Users/aeschright/code/cli",
"author": {
"name": "Lloyd Brookes",
"email": "[email protected]"
},
"bugs": {
"url": "https://github.com/75lb/byte-size/issues"
},
"bundleDependencies": false,
"contributors": [
{
"name": "Raul Perez",
"email": "[email protected]",
"url": "http://repejota.com"
}
],
"deprecated": false,
"description": "Convert a bytes (and octets) value to a more human-readable format. Choose between metric or IEC units.",
"devDependencies": {
"coveralls": "^3.0.2",
"jsdoc-to-markdown": "^4.0.1",
"rollup": "^0.68.1",
"test-runner": "^0.5.1"
},
"engines": {
"node": ">=6.0.0"
},
"files": [
"index.mjs",
"dist/index.js"
],
"homepage": "https://github.com/75lb/byte-size#readme",
"keywords": [
"convert",
"bytes",
"octet",
"size",
"human",
"readable",
"metric",
"IEC"
],
"license": "MIT",
"main": "dist/index.js",
"name": "byte-size",
"repository": {
"type": "git",
"url": "git+https://github.com/75lb/byte-size.git"
},
"scripts": {
"cover": "istanbul cover ./node_modules/.bin/test-runner test.js && cat coverage/lcov.info | ./node_modules/.bin/coveralls",
"dist": "rollup -c dist/index.config.js",
"docs": "jsdoc2md -t README.hbs dist/index.js > README.md; echo",
"test": "npm run test:js && npm run test:mjs",
"test:js": "rollup -c dist/test.config.js && node dist/test.js",
"test:mjs": "node --experimental-modules test/test.mjs"
},
"version": "5.0.1"
}