-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
55 lines (55 loc) · 1.68 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
{
"name": "@ittkm/exchangeratesapi",
"version": "1.0.6",
"description": "Client of https://exchangeratesapi.io/ with your free subscription plan. You can perform 'Source Currency Switching', 'Currency Conversion' and 'Time-Frame Queries' at no cost.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest --coverage",
"check-types": "tsc --noEmit",
"eslint": "eslint src/**/*.ts",
"eslint:fix": "eslint src/**/*.ts --fix",
"format": "prettier --write 'src/**/*.{js,ts,json}'",
"lint": "npm-run-all eslint check-types",
"lint:fix": "npm-run-all eslint:fix check-types format",
"build": "tsc",
"preversion": "npm run lint && npm test",
"version": "npm run build && git add --all dist",
"postversion": "git push && git push --tags && npm publish --access=public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/itTkm/exchangeratesapi.git"
},
"keywords": [
"exchangeratesapi.io",
"exchange",
"rate",
"api",
"free"
],
"author": "itTkm",
"license": "MIT",
"bugs": {
"url": "https://github.com/itTkm/exchangeratesapi/issues"
},
"homepage": "https://github.com/itTkm/exchangeratesapi#readme",
"dependencies": {
"node-fetch": "^2.6.7"
},
"devDependencies": {
"@types/jest": "^26.0.22",
"@types/node-fetch": "^2.5.8",
"@typescript-eslint/eslint-plugin": "^4.17.0",
"@typescript-eslint/parser": "^4.17.0",
"coveralls": "^3.1.0",
"dotenv": "^8.2.0",
"eslint": "^7.22.0",
"eslint-config-prettier": "8.1.0",
"jest": "^26.6.3",
"npm-run-all": "^4.1.5",
"prettier": "2.2.1",
"ts-jest": "^26.5.4",
"typescript": "^4.2.3"
}
}