-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
68 lines (68 loc) · 1.83 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
{
"name": "pcp-client-javascript-sdk",
"version": "1.0.0",
"description": "PAYONE Commerce Platform Client JavaScript SDK",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"files": [
"dist/**/*"
],
"scripts": {
"build": "tsc",
"build:demo": "cd demo && npm install && npm run build",
"start:demo": "cd demo && npm start",
"prepublishOnly": "npm run build",
"prepare": "lefthook install",
"lint": "eslint -c ./eslint.config.mjs --fix",
"prepack": "npm run lint && npm run prepublishOnly",
"test": "vitest",
"test:coverage": "vitest run --coverage",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"version": "./version.sh"
},
"keywords": [
"payone",
"client",
"typescript",
"javascript",
"sdk"
],
"license": "MIT",
"author": "PAYONE-GmbH",
"homepage": "https://github.com/PAYONE-GmbH/PCP-client-javascript-SDK",
"repository": {
"type": "git",
"url": "https://github.com/PAYONE-GmbH/PCP-client-javascript-SDK.git"
},
"dependencies": {
"@types/applepayjs": "14.0.8"
},
"devDependencies": {
"@commitlint/cli": "19.3.0",
"@commitlint/config-conventional": "19.2.2",
"@eslint/js": "9.8.0",
"@types/jsdom": "21.1.7",
"@types/node": "22.1.0",
"@vitest/coverage-v8": "2.0.5",
"conventional-changelog-cli": "5.0.0",
"eslint": "9.8.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.2.1",
"globals": "15.9.0",
"jsdom": "24.1.1",
"lefthook": "1.7.11",
"prettier": "3.3.3",
"ts-node": "10.9.2",
"typescript": "5.5.4",
"typescript-eslint": "8.0.1",
"vitest": "2.0.5"
},
"prettier": {
"useTabs": false,
"bracketSameLine": true,
"singleQuote": true,
"trailingComma": "all",
"bracketSpacing": true
}
}