-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
49 lines (49 loc) · 1.12 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
{
"name": "moneryze",
"version": "2.1.0",
"description": "Promise based wrapper for the Moneris API",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"test": "jest",
"coverage": "jest --coverage",
"lint": "eslint src --ext .js,.ts"
},
"repository": {
"type": "git",
"url": "https://github.com/wuon/moneryze.git"
},
"engines": {
"node": ">=18.19.0",
"npm": ">=10.2.3"
},
"author": "hello@wuon.io",
"license": "MIT",
"dependencies": {
"xml-js": "^1.6.11"
},
"devDependencies": {
"@types/jest": "^29.5.11",
"@typescript-eslint/eslint-plugin": "^6.16.0",
"@typescript-eslint/parser": "^6.16.0",
"eslint": "^8.56.0",
"eslint-config-standard-with-typescript": "^43.0.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.0",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"tsup": "^8.0.1",
"tsx": "^4.7.0",
"typescript": "^5.3.3"
},
"keywords": [
"moneris"
]
}