forked from JsCommunity/human-format
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.19 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
{
"name": "human-format",
"version": "0.9.0",
"license": "ISC",
"description": "Converts a number to/from a human readable string: `1337` ↔ `1.34kB`",
"keywords": [
"byte",
"bytes",
"file",
"filesize",
"human",
"humanized",
"pretty",
"readable",
"si",
"size",
"unit"
],
"homepage": "https://github.com/JsCommunity/human-format",
"bugs": "https://github.com/JsCommunity/human-format/issues",
"repository": {
"type": "git",
"url": "http://github.com/JsCommunity/human-format"
},
"author": {
"name": "Julien Fontanet",
"email": "[email protected]"
},
"preferGlobal": false,
"files": [
"index.js"
],
"engines": {
"node": ">=4"
},
"devDependencies": {
"browserify": "^14.5.0",
"husky": "^0.14.3",
"jest": "^21.2.1",
"standard": "^10.0.3",
"uglify-js": "^3.1.8"
},
"scripts": {
"commitmsg": "yarn test",
"dev-test": "jest --watch",
"prepublishOnly": "mkdir -p dist && browserify -s humanFormat index.js | uglifyjs -c > dist/human-format.js",
"pretest": "standard --fix",
"test": "jest"
},
"jest": {
"collectCoverage": true,
"testEnvironment": "node"
}
}