-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
59 lines (59 loc) · 1.24 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
{
"name": "satoshi-bitcoin",
"version": "1.0.5",
"description": "Convert Satoshi <-> Bitcoin",
"main": "index.js",
"engines": {
"node": ">0.10"
},
"scripts": {
"test": "eslint index.js && mocha",
"bundle": "browserify index.js -o index.bundle.js --standalone sb",
"wiki": "jsdox index.js --output wiki",
"precommit": "npm run wiki && npm run bundle"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dawsbot/satoshi-bitcoin.git"
},
"keywords": [
"bitcoin",
"satoshi",
"conversion",
"cryptocurrency",
"math",
"arbitrary",
"precision",
"arithmetic",
"big",
"integer",
"int",
"number",
"biginteger",
"bigint",
"bignumber",
"decimal",
"float"
],
"author": "Dawson Botsford (https://dawsbot.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/dawsbot/satoshi-bitcoin/issues"
},
"homepage": "https://github.com/dawsbot/satoshi-bitcoin#readme",
"devDependencies": {
"browserify": "^17.0.0",
"chai": "^3.5.0",
"eslint": "2.13.1",
"husky": "^0.11.4",
"jsdox": "^0.4.9",
"mocha": "^2.4.5"
},
"dependencies": {
"big.js": "^3.1.3"
},
"files": [
"index.js",
"index.bundle.js"
]
}