-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 979 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 979 Bytes
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
{
"name": "fnb-api",
"version": "1.0.11",
"description": "API to easily access bank data from FNB",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "clear && ts-node --project tsconfig.test.json ./test/index.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bitshiftza/fnb-api.git"
},
"author": "bitshiftza",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/bitshiftza/fnb-api/issues"
},
"homepage": "https://github.com/bitshiftza/fnb-api#readme",
"keywords": [
"FNB",
"First National Bank",
"API"
],
"dependencies": {
"moment": "^2.24.0",
"puppeteer": "^19.4.1"
},
"devDependencies": {
"@types/jquery": "^3.5.16",
"@types/puppeteer": "^7.0.4",
"dotenv": "^16.0.3",
"prettier": "^2.8.1",
"ts-node": "^10.9.1",
"tslint": "^6.1.2",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.9.4"
}
}