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 6
/
package.json
104 lines (104 loc) · 2.72 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
{
"name": "connect-sdk-nodejs",
"version": "4.20.0",
"description": "SDK to communicate with the Ingenico ePayments platform using the Ingenico Connect Server API",
"homepage": "https://github.com/Ingenico-ePayments/connect-sdk-nodejs#readme",
"bugs": {
"url": "https://github.com/Ingenico-ePayments/connect-sdk-nodejs/issues"
},
"license": "SEE LICENSE IN LICENSE.txt",
"author": "Ingenico ePayments",
"files": [
"lib",
"schemas"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/Ingenico-ePayments/connect-sdk-nodejs.git"
},
"scripts": {
"compile": "tsc",
"lint": "eslint ./src --ext .ts",
"format": "prettier --write \"**/*.+(json|ts|tsx)\"",
"format:check": "prettier --check \"**/*.+(json|ts|tsx)\"",
"typedoc": "typedoc",
"build": "npm run format:check && npm run lint && npm run compile",
"test": "jest",
"test:unit": "jest --group=unit",
"test:integration": "jest --group=integration"
},
"dependencies": {
"dateformat": "^4.5.1",
"form-data": "^4.0.0",
"jsonschema": "^1.4.0",
"lodash": "^4.17.21",
"secure-compare": "^3.0.1",
"traverse": "^0.6.6",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/body-parser": "^1.19.0",
"@types/dateformat": "^3.0.1",
"@types/express": "^4.17.12",
"@types/jest": "^25.2.3",
"@types/lodash": "^4.14.170",
"@types/node": "^8.10.66",
"@types/supertest": "^2.0.11",
"@types/traverse": "^0.6.32",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^2.34.0",
"body-parser": "^1.19.0",
"eslint": "^6.8.0",
"express": "^4.17.1",
"husky": "^4.3.8",
"jest": "^25.5.4",
"jest-junit": "^10.0.0",
"jest-runner-groups": "^1.1.1",
"nock": "^11.9.1",
"prettier": "^1.19.1",
"supertest": "^6.1.3",
"ts-jest": "^25.5.1",
"typedoc": "^0.22.18",
"typescript": "^4.0.8"
},
"engines": {
"node": ">=8"
},
"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"
],
"testPathIgnorePatterns": [
"__tests__/integration/init.ts"
]
},
"jest-junit": {
"includeShortConsoleOutput": "true"
}
}