This repository has been archived by the owner on Mar 19, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
103 lines (103 loc) · 2.67 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
{
"name": "connect-sdk-client-js",
"version": "4.1.1",
"description": "The JavaScript based client SDK that can be used for client to server communication between you and the Ingenico ePayments platform",
"homepage": "https://github.com/Ingenico-ePayments/connect-sdk-client-js#readme",
"bugs": {
"url": "https://github.com/Ingenico-ePayments/connect-sdk-client-js/issues"
},
"license": "SEE LICENSE IN LICENSE.txt",
"author": "Ingenico ePayments",
"files": [
"dist",
"bower.json"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/Ingenico-ePayments/connect-sdk-client-js.git"
},
"scripts": {
"lint": "eslint ./src --ext .ts",
"format": "prettier --write \"**/*.+(json|ts|tsx)\"",
"format:check": "prettier --check \"**/*.+(json|ts|tsx)\"",
"typedoc": "typedoc dist",
"watch": "gulp watch",
"build": "npm run format:check && npm run lint && gulp build",
"test": "jest"
},
"dependencies": {
"node-forge": "^1.3.1"
},
"devDependencies": {
"@types/applepayjs": "^3.0.3",
"@types/dateformat": "^3.0.1",
"@types/googlepay": "^0.6.3",
"@types/jest": "^27.4.0",
"@types/node": "^8.10.66",
"@types/node-forge": "^1.0.0",
"@typescript-eslint/eslint-plugin": "^5.10.0",
"@typescript-eslint/parser": "^5.10.0",
"dateformat": "^4.5.1",
"del": "^6.0.0",
"duration-fns": "^3.0.2",
"eslint": "^8.7.0",
"gulp": "^4.0.2",
"gulp-concat": "^2.6.1",
"gulp-sourcemaps": "^3.0.0",
"gulp-typescript": "^6.0.0-alpha.1",
"gulp-uglify": "^3.0.2",
"husky": "^4.3.8",
"jest": "^27.4.7",
"jest-junit": "^13.0.0",
"jest-runner-groups": "^2.1.0",
"prettier": "^2.5.1",
"ts-jest": "^27.1.3",
"typedoc": "^0.17.8",
"typescript": "^4.4.4"
},
"eslintConfig": {
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint"
],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended"
]
},
"prettier": {
"printWidth": 180
},
"husky": {
"hooks": {
"pre-commit": "npm run format:check && npm run lint"
}
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"runner": "groups",
"reporters": [
"default",
"jest-junit"
],
"moduleNameMapper": {
"connectsdk\\.(.*)": "<rootDir>/src/$1.ts"
},
"globals": {
"ts-jest": {
"diagnostics": {
"ignoreCodes": [
"151001"
]
}
}
}
},
"jest-junit": {
"includeShortConsoleOutput": "true"
}
}