-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.05 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
{
"name": "kilomega",
"version": "1.0.5",
"description": "Get the right metric unit prefix for a certain bit or byte amount.",
"license": "MIT",
"module": "kilomega.js",
"main": "kilomega.common.js",
"types": "kilomega.d.ts",
"sideEffects": false,
"scripts": {
"build": "npx babel kilomega.js -o kilomega.common.js",
"test": "npx jest",
"coveralls": "jest --coverage && cat ./coverage/lcov.info | coveralls",
"example": "node example/example.js"
},
"keywords": [
"metric",
"si",
"iec",
"prefix",
"kilo",
"mega",
"giga",
"tera"
],
"author": {
"name": "Edwin Martin",
"email": "[email protected]",
"url": "https://bitstorm.org/"
},
"files": [
"kilomega.js",
"kilomega.common.js",
"kilomega.d.ts"
],
"repository": {
"type": "git",
"url": "https://github.com/edwinm/kilomega.git"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-transform-es2015-modules-simple-commonjs": "^0.3.0",
"coveralls": "^3.1.1",
"jest": "^29.5.0",
"webpack": "^5.88.1",
"webpack-cli": "^5.1.4"
},
"dependencies": {}
}