-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
49 lines (49 loc) · 1.21 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
{
"name": "forex-quotes",
"version": "6.0.2",
"description": "Realtime forex quote API client",
"main": "./lib/ForgeClient.js",
"types": "./lib/ForgeClient.d.ts",
"dependencies": {
"@types/node": "^12.0.2",
"typed-rest-client": "^1.4.0",
"ws": "^7.1.2"
},
"devDependencies": {
"@types/jest": "^23.3.14",
"dts-generator": "^2.1.0",
"husky": "^1.3.1",
"jest": "^23.6.0",
"ts-jest": "^23.10.5",
"ts-node": "^8.2.0",
"tslint": "^5.16.0",
"tslint-config-airbnb": "^5.11.1",
"tslint-sonarts": "^1.9.0",
"typescript": "^3.4.5"
},
"scripts": {
"prepublish": "npm run build",
"lint": "tslint --project ./tsconfig.json \"src/**/*.ts\"",
"lint-fix": "tslint --fix --project ./tsconfig.json \"src/**/*.ts\"",
"build": "npm run lint && tsc"
},
"husky": {
"hooks": {
"pre-push": "npm run build"
}
},
"keywords": [
"forex",
"currency",
"quotes",
"currency-converter"
],
"author": "1Forge",
"license": "MIT",
"homepage": "https://1forge.com/",
"bugs": "https://github.com/1Forge/javascript-forex-quotes/issues",
"repository": {
"url": "https://github.com/1Forge/javascript-forex-quotes",
"type": "git"
}
}