This repository has been archived by the owner on Aug 26, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
114 lines (114 loc) · 2.68 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "checkout-psp-api",
"version": "2.0.3",
"description": "A library for the Finnish Checkout payment system integration",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"author": "Santeri Hurnanen <santeri@oikeuttaelaimille.fi>",
"license": "MIT",
"bugs": {
"url": "https://github.com/hyrsky/checkout-psp-api/issues"
},
"homepage": "https://github.com/hyrsky/checkout-psp-api#readme",
"repository": {
"type": "git",
"url": "https://github.com/hyrsky/checkout-psp-api.git"
},
"scripts": {
"build": "tsc",
"lint": "eslint '{src,test}/**/*.{js,json,ts}' --quiet --fix",
"build:docs": "typedoc --out docs --target es6 --theme minimal --mode file src --excludeNotExported",
"commit": "git-cz",
"test": "jest --coverage",
"debug": "node --inspect-brk ./node_modules/.bin/jest --runInBand",
"semantic-release": "semantic-release"
},
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@semantic-release/changelog": "^3.0.6",
"@semantic-release/git": "^8.0.0",
"@types/jest": "^24.9.0",
"@types/uuid": "^3.4.6",
"@typescript-eslint/eslint-plugin": "^2.16.0",
"@typescript-eslint/parser": "^2.16.0",
"axios": "^0.21.1",
"commitizen": "^4.0.3",
"cz-conventional-changelog": "^3.0.2",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.9.0",
"eslint-plugin-prettier": "^3.1.2",
"husky": "^4.0.10",
"jest": "^24.9.0",
"jest-config": "^24.9.0",
"lint-staged": "^10.0.0",
"prettier": "^1.19.1",
"semantic-release": "^17.2.3",
"ts-jest": "^24.3.0",
"typedoc": "^0.16.7",
"typescript": "^4.1.3"
},
"dependencies": {
"uuid": "^8.3.2"
},
"peerDependencies": {
"axios": "^0.21.1"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"{src,test}/**/*.ts": [
"eslint src test --ext ts --fix",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/github",
"@semantic-release/git"
]
},
"jest": {
"transform": {
".(ts|tsx)": "ts-jest"
},
"testEnvironment": "node",
"moduleFileExtensions": [
"ts",
"js"
],
"coveragePathIgnorePatterns": [
"/node_modules/",
"/test/"
],
"coverageThreshold": {
"global": {
"branches": 90,
"functions": 95,
"lines": 95,
"statements": 95
}
},
"collectCoverageFrom": [
"src/**/*.{js,ts}"
]
}
}