This repository has been archived by the owner on May 24, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
65 lines (65 loc) · 1.88 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
60
61
62
63
64
65
{
"name": "ethereum-unit-converter",
"version": "0.0.17",
"description": "Ethereum unit converter",
"main": "dist/index.js",
"bin": {
"ether_converter": "bin/ethereum-unit-converter",
"ether-converter": "bin/ethereum-unit-converter",
"ethereum_unit_converter": "bin/ethereum-unit-converter",
"ethereum-unit-converter": "bin/ethereum-unit-converter"
},
"scripts": {
"lint": "standard --fix *.js test/*.js bin/* example/client.js",
"coverage": "node_modules/nyc/bin/nyc.js report --reporter=text-lcov | ./node_modules/.bin/coveralls",
"test": "tape ./test/*.js",
"test:report": "./node_modules/nyc/bin/nyc.js --reporter=html --reporter=text tape ./test/index.js",
"build": "babel index.js --presets babel-preset-es2015 --out-dir dist/",
"build:example": "browserify example/client.js > example/dist/bundle.js"
},
"repository": {
"type": "git",
"url": "https://github.com/miguelmota/ethereum-unit-converter"
},
"bugs": {
"url": "https://github.com/miguelmota/ethereum-unit-converter/issues"
},
"homepage": "https://github.com/miguelmota/ethereum-unit-converter",
"author": {
"name": "Miguel Mota",
"email": "hello@miguelmota.com",
"url": "https://miguelmota.com/"
},
"license": {
"type": "MIT",
"url": "https://github.com/miguelmota/ethereum-unit-converter/blob/master/LICENSE"
},
"keywords": [
"crypto",
"ethereum",
"ether",
"eth",
"unit",
"converter",
"tool",
"util",
"cli"
],
"dependencies": {
"bignumber.js": "^8.0.1",
"ethers": "^5.5.4"
},
"devDependencies": {
"babel": "^6.23.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-preset-es2015": "^6.24.1",
"babelify": "^8.0.0",
"browserify": "^16.2.3",
"coveralls": "^3.0.2",
"istanbul": "^0.4.5",
"nyc": "^12.0.2",
"standard": "^16.0.3",
"tape": "^4.11.0"
}
}