-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.51 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
{
"name": "futurepay-form-integration-js",
"version": "1.0.0",
"main": "./index.js",
"typings": "./index.d.ts",
"scripts": {
"build": "npm test && tsc",
"dist": "copy /Y package.json dist && copy /Y README.md dist",
"test": "jest --passWithNoTests --collectCoverage"
},
"files": [
"*"
],
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"moduleFileExtensions": [
"ts",
"js"
],
"testEnvironment": "jsdom",
"testRegex": "^.+\\.spec\\.ts$",
"coverageReporters": [
"json",
"lcov",
"text",
"clover",
"cobertura"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/jamesmcroft/futurepay-form-integration-for-js.git"
},
"keywords": [
"FuturePay",
"Worldpay",
"Form Integration",
"Recurring Payments"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/jamesmcroft/futurepay-form-integration-for-js/issues"
},
"homepage": "https://github.com/jamesmcroft/futurepay-form-integration-for-js",
"dependencies": {
"made-data-validation": "^0.1.0-alpha.16"
},
"devDependencies": {
"@faker-js/faker": "^8.4.1",
"@types/jest": "^29.5.12",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"ts-jest": "^29.1.2",
"typescript": "^5.4.3"
}
}