-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.65 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.65 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
{
"name": "kyc-booster",
"description": "KYC implementation in Booster",
"version": "0.1.0",
"author": "Javier Toledo",
"dependencies": {
"@boostercloud/framework-common-helpers": "^1.10.0",
"@boostercloud/framework-core": "^1.10.0",
"@boostercloud/framework-provider-aws": "^1.10.0",
"@boostercloud/framework-types": "^1.10.0",
"tslib": "^2.4.0"
},
"devDependencies": {
"@boostercloud/framework-provider-aws-infrastructure": "^1.10.0",
"@boostercloud/framework-provider-local": "^1.10.0",
"@boostercloud/framework-provider-local-infrastructure": "^1.10.0",
"@boostercloud/metadata-booster": "^1.10.0",
"@types/jsonwebtoken": "^8.5.1",
"@types/mocha": "8.2.2",
"@types/node": "16.11.7",
"@typescript-eslint/eslint-plugin": "4.22.1",
"@typescript-eslint/parser": "4.22.1",
"dotenv": "^16.0.3",
"eslint": "7.26.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-prettier": "3.4.0",
"mocha": "8.4.0",
"nyc": "15.1.0",
"prettier": "2.3.0",
"rimraf": "^3.0.1",
"ts-node": "9.1.1",
"ttypescript": "1.5.13",
"typescript": "4.7.4"
},
"engines": {
"node": ">=14.0.0"
},
"homepage": "",
"license": "GPL3",
"main": "dist/index.js",
"repository": "https://github.com/boostercloud/kyc-example",
"scripts": {
"lint:check": "eslint --ext '.js,.ts' **/*.ts",
"lint:fix": "eslint --quiet --fix --ext '.js,.ts' **/*.ts",
"build": "ttsc -b tsconfig.json",
"clean": "rimraf ./dist tsconfig.tsbuildinfo",
"test": "AWS_SDK_LOAD_CONFIG=true BOOSTER_ENV=test nyc --extension .ts mocha --forbid-only \"test/**/*.test.ts\""
},
"types": "lib/index.d.ts"
}