-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·64 lines (64 loc) · 1.43 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
{
"name": "exr",
"version": "0.2.0",
"description": "Exchange rates module and CLI app",
"main": "dist/exr.js",
"files": [
"/dist"
],
"types": "",
"scripts": {
"clean": "rimraf dist/*",
"tsc": "tsc",
"test": "jest --detectOpenHandles --runInBand --forceExit",
"build": "npm-run-all clean tsc",
"watch": "tsc --watch",
"prepare": "npm run build",
"eslint": "eslint src",
"eslint-fix": "eslint --fix src"
},
"bin": {
"exr": "./dist/src/exr.js"
},
"engines": {
"node": ">=10",
"tsc": ">=3"
},
"keywords": [
"cli",
"exchange rates",
"currency",
"rates"
],
"author": {
"name": "Christian Castelli",
"email": "[email protected]"
},
"license": "MIT",
"dependencies": {
"axios": "^0.21.1",
"chalk": "^4.1.0",
"checkvar": "^1.0.1",
"commander": "^7.0.0",
"inquirer": "^7.3.3",
"joi": "^17.4.0",
"ora": "^5.2.0"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/commander": "^2.12.2",
"@types/inquirer": "^7.3.1",
"@types/jest": "^26.0.23",
"@typescript-eslint/eslint-plugin": "^4.12.0",
"@typescript-eslint/parser": "^4.12.0",
"eslint": "^7.17.0",
"eslint-config-airbnb-base": "^11.2.0",
"eslint-plugin-import": "^2",
"jest": "^26.5.0",
"jest-extended": "^0.11.5",
"npm-run-all": "^1.8.0",
"rimraf": "^3",
"ts-jest": "^26.5.5",
"typescript": "^4"
}
}