-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.41 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.41 KB
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
{
"name": "halifax-share-dealing-sdk",
"version": "2.1.0",
"description": "Unofficial SDK for Halifax Share Dealing, IWeb Share Dealing, Bank of Scotland Share Dealing and The Lloyds Bank Direct Investments Service",
"keywords": [
"halifax",
"iweb",
"bank of scotland",
"lloyds",
"share dealing",
"direct investments",
"sdk",
"api"
],
"license": "MIT",
"author": "Adam Jones (domdomegg)",
"repository": {
"type": "git",
"url": "https://github.com/domdomegg/halifax-share-dealing-sdk.git"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"lint": "eslint --ext .js,.jsx,.ts,.tsx .",
"clean": "rm -rf dist",
"build": "tsc --project tsconfig.build.json",
"prepublishOnly": "npm run clean && npm run build"
},
"dependencies": {
"cheerio": "^0.22.0",
"superagent": "^10.2.3"
},
"devDependencies": {
"@tsconfig/node-lts-strictest": "^18.12.1",
"@types/cheerio": "^0.22.31",
"@types/jest": "^29.2.6",
"@types/superagent": "^8.1.9",
"eslint": "^8.32.0",
"eslint-config-domdomegg": "^1.2.0",
"jest": "^29.3.1",
"ts-jest": "^29.0.5",
"typescript": "^4.9.4"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node"
},
"eslintConfig": {
"extends": [
"eslint-config-domdomegg"
]
}
}