forked from miguelmota/to-hex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.03 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
{
"name": "to-hex",
"version": "0.0.13",
"description": "Convert values to hex string",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"test": "tape test/*.js",
"lint": "standard --fix index.js test/test.js example/example.js"
},
"repository": {
"type": "git",
"url": "https://github.com/miguelmota/to-hex"
},
"bugs": {
"url": "https://github.com/miguelmota/to-hex/issues"
},
"homepage": "https://github.com/miguelmota/to-hex",
"author": {
"name": "Miguel Mota",
"email": "hello@miguelmota.com",
"url": "https://miguelmota.com/"
},
"license": {
"type": "MIT",
"url": "https://github.com/miguelmota/to-hex/blob/master/LICENSE"
},
"dependencies": {
"normalize-hex": "0.0.2"
},
"devDependencies": {
"big.js": "^5.2.2",
"bignumber.js": "^9.0.0",
"bn.js": "^4.11.8",
"decimal.js": "^10.2.0",
"standard": "^12.0.1",
"tape": "^4.10.2"
},
"keywords": [
"normalize",
"hex",
"string",
"prefix",
"convert",
"types"
]
}