-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
89 lines (89 loc) · 1.88 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
84
85
86
87
88
89
{
"name": "xbytes",
"version": "1.9.1",
"description": "Parse bytes to human readable sizes (4747) → ('4.75 KB') and vice versa.",
"main": "dist/index.js",
"module": "dist/index.mjs",
"exports": {
"require": {
"types": "./typings/index.d.ts",
"default": "./dist/index.js"
},
"import": {
"types": "./typings/index.d.ts",
"default": "./dist/index.mjs"
}
},
"types": "typings/index.d.ts",
"scripts": {
"test": "jest",
"build": "babel lib -d dist && node build.js",
"preversion": "npm run build",
"version": "npm test"
},
"engines": {
"node": ">=1"
},
"files": [
"dist",
"typings",
"examples"
],
"keywords": [
"convert",
"size",
"bytes",
"bits",
"parser",
"iec",
"binary",
"decimal",
"human",
"humanized",
"data",
"filesize",
"file",
"readable",
"utility",
"convert",
"converter",
"pretty"
],
"author": "Miraculous Owonubi <omiraculous@gmail.com>",
"maintainers": [
"Miraculous Owonubi <omiraculous@gmail.com>"
],
"repository": {
"type": "git",
"url": "git+https://github.com/miraclx/xbytes.git"
},
"bugs": {
"url": "https://github.com/miraclx/xbytes/issues"
},
"license": "Apache-2.0",
"babel": {
"presets": [
"airbnb",
"@babel/preset-env"
]
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"babel-eslint": "^10.1.0",
"babel-preset-airbnb": "^3.3.2",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.2.0",
"eslint-config-prettier": "^4.3.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-prettier": "^3.1.3",
"jest": "^28.1.1",
"prettier": "^1.19.1"
},
"homepage": "https://github.com/miraclx/xbytes#readme",
"directories": {
"lib": "lib",
"test": "test"
}
}