-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
69 lines (69 loc) · 2.06 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "@swedbank-pay/sdk",
"version": "1.2.0",
"description": "TypeScript / JavaScript Software Development Kit for the Swedbank Pay API Platform",
"main": "build/src/main.js",
"publishConfig": {
"access": "public"
},
"files": [
"/build"
],
"engines": {
"node": ">=14"
},
"repository": {
"type": "git",
"url": "https://github.com/SwedbankPay/swedbank-pay-sdk-js.git"
},
"eslintConfig": {
"extends": "@bjerk/eslint-config"
},
"prettier": "@cobraz/prettier",
"devDependencies": {
"@bjerk/eslint-config": "^3.0.0",
"@cobraz/prettier": "^2.0.1",
"@types/babel__core": "^7.20.0",
"@types/jest": "^29.2.6",
"@types/node": "~18.11.9",
"@typescript-eslint/eslint-plugin": "~5.59.5",
"@typescript-eslint/parser": "~5.59.5",
"eslint": "~8.40.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-eslint-comments": "3.2.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-unicorn": "^46.0.0",
"jest": "^29.5.0",
"nock": "^13.3.1",
"prettier": "~2.8.8",
"rimraf": "~5.0.0",
"ts-jest": "^29.1.0",
"tsutils": "~3.21.0",
"typedoc": "^0.24.7",
"typedoc-plugin-markdown": "^3.15.0",
"typescript": "^4.3.0"
},
"scripts": {
"clean": "rimraf coverage build tmp",
"generate-docs": "typedoc --mode file --readme none --plugin typedoc-plugin-markdown --hideSources --out docs src",
"build": "tsc -p tsconfig.release.json",
"build:watch": "tsc -w -p tsconfig.release.json",
"lint": "eslint . --ext .ts,.tsx",
"format": "prettier --write . --ignore-path .gitignore",
"format:check": "prettier --check . --ignore-path .gitignore",
"test": "jest --coverage",
"test:watch": "jest --watch"
},
"author": "Swedbank Pay <opensource@swedbankpay.com>",
"license": "MIT",
"dependencies": {
"@types/mocha": "^10.0.1",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.0",
"got": "^11.0.2",
"tslib": "^2.5.0"
}
}