-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.73 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
66
67
{
"name": "coin-converter",
"version": "1.0.4",
"description": "A CLI to convert Cryptocurrency to any currency provided.",
"main": "index.js",
"scripts": {
"clear": "rimraf bin",
"build": "npm run clear && ./node_modules/.bin/babel --out-dir bin src",
"build:watch": "npm run build -- --watch",
"lint": "./node_modules/.bin/eslint src/*.js",
"lint:fix": "npm run lint -- --fix",
"test": "./node_modules/.bin/mocha tests/**/*.spec.js --require babel-register --reporter nyan",
"test:tdd": "npm run test -- --watch",
"test:coverage": "nyc npm test",
"build:link": "npm run build && npm link"
},
"preferGlobal": true,
"bin": {
"coin-converter": "bin/main.js"
},
"nyc": {
"reporter": [
"text",
"html"
],
"exclude": [
"tests/**"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/Area-16/btc-converter.git"
},
"keywords": [
"cryptocurrency",
"converter",
"btc"
],
"author": "Douglas Alves <[email protected]> (https://dougtq.github.io/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/Area-16/btc-converter/issues"
},
"homepage": "https://github.com/Area-16/btc-converter#readme",
"devDependencies": {
"babel-cli": "6.24.1",
"babel-preset-env": "1.3.2",
"babel-register": "6.24.0",
"chai": "3.5.0",
"eslint": "4.0.0",
"eslint-config-airbnb-base": "11.2.0",
"eslint-plugin-import": "2.6.1",
"husky": "0.11.9",
"mocha": "10.0.0",
"nock": "9.0.13",
"nyc": "15.1.0",
"rimraf": "2.6.1",
"sinon": "2.3.6",
"sinon-chai": "2.11.0"
},
"dependencies": {
"chalk": "2.0.1",
"commander": "2.10.0",
"ora": "1.3.0",
"request": "2.81.0"
}
}