-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.45 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
{
"name": "pcp-server-nodejs-sdk",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"files": [
"dist/**/*"
],
"scripts": {
"build": "tsc",
"dev": "ts-node src/index.ts",
"lint": "eslint -c ./eslint.config.mjs",
"lint:fix": "eslint -c ./eslint.config.mjs --fix",
"format:check": "prettier --check \"src/**/!(*.d).ts\"",
"format:write": "prettier --write \"src/**/!(*.d).ts\"",
"test": "vitest",
"test:coverage": "vitest run --coverage",
"changelog": "conventional-changelog -i CHANGELOG.md -s -r 0 --config ./changelog.config.cjs",
"version": "./version.sh"
},
"keywords": [
"payone",
"server",
"node",
"sdk"
],
"license": "MIT",
"author": "PAYONE-GmbH",
"homepage": "https://github.com/PAYONE-GmbH/PCP-server-nodeJS-SDK",
"repository": {
"type": "git",
"url": "https://github.com/PAYONE-GmbH/PCP-server-nodeJS-SDK.git"
},
"devDependencies": {
"@commitlint/cli": "19.4.0",
"@commitlint/config-conventional": "19.2.2",
"@eslint/js": "9.8.0",
"@types/node": "22.1.0",
"@vitest/coverage-v8": "2.0.5",
"conventional-changelog-cli": "5.0.0",
"eslint": "9.8.0",
"globals": "15.9.0",
"lefthook": "1.7.12",
"prettier": "3.3.3",
"ts-node": "10.9.2",
"typescript": "5.5.4",
"typescript-eslint": "8.0.1",
"vitest": "2.0.5"
},
"dependencies": {
"node-fetch": "3.3.2"
}
}