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
| {
| "name": "filesize",
| "description": "JavaScript library to generate a human readable String describing the file size",
| "version": "3.6.1",
| "homepage": "https://filesizejs.com",
| "author": "Jason Mulligan <jason.mulligan@avoidwork.com>",
| "repository": {
| "type": "git",
| "url": "git://github.com/avoidwork/filesize.js.git"
| },
| "bugs": {
| "url": "https://github.com/avoidwork/filesize.js/issues"
| },
| "license": "BSD-3-Clause",
| "main": "lib/filesize",
| "engines": {
| "node": ">= 0.4.0"
| },
| "scripts": {
| "test": "grunt test"
| },
| "devDependencies": {
| "babel-core": "^6.26.0",
| "babel-preset-env": "^1.6.1",
| "babel-minify": "^0.3.0",
| "grunt": "^1.0.1",
| "grunt-babel": "^7.0.0",
| "grunt-cli": "^1.2.0",
| "grunt-contrib-concat": "^1.0.1",
| "grunt-contrib-nodeunit": "^1.0.0",
| "grunt-contrib-uglify": "^3.3.0",
| "grunt-contrib-watch": "^1.0.0",
| "grunt-eslint": "^20.1.0"
| },
| "keywords": [
| "file",
| "filesize",
| "size",
| "readable",
| "file system",
| "bytes",
| "diff"
| ]
| }
|
|