-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
37 lines (37 loc) · 865 Bytes
/
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
{
"name": "hex2dec",
"version": "1.1.2",
"description": "Arbitrary precision decimal/hexadecimal converter.",
"main": "index.js",
"scripts": {
"test": "tape tests/*.test.js | tap-spec",
"preversion": "npm test",
"postversion": "git push && git push --tags && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/donmccurdy/hex2dec.git"
},
"keywords": [
"decimal",
"hexadecimal",
"converter",
"precision",
"int64",
"long",
"hex"
],
"contributors": [
"Dan Vanderkam <[email protected]>",
"Don McCurdy <[email protected]>"
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/donmccurdy/hex2dec/issues"
},
"homepage": "https://github.com/donmccurdy/hex2dec#readme",
"devDependencies": {
"tap-spec": "5.0.0",
"tape": "5.9.0"
}
}