-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
66 lines (66 loc) · 1.74 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
{
"name": "khipu-client",
"version": "1.1.0",
"description": "A NodeJS client for Khipu (non official).",
"keywords": [
"client",
"gateway",
"khipu-client",
"khipu",
"payment-gateway",
"payment",
"typescript"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"homepage": "https://github.com/ivyhjk/khipu-client-nodejs#readme",
"bugs": "https://github.com/ivyhjk/khipu-client-nodejs/issues",
"scripts": {
"build": "tsc",
"clean": "git clean -dfqX -- node_modules .dist tsconfig*tsbuildinfo",
"lint-staged": "lint-staged",
"lint": "eslint .",
"prepare": "husky install && npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"test": "jest"
},
"author": {
"name": "Elvis Munoz F.",
"email": "elvis.munoz.f@gmail.com"
},
"license": "MIT",
"devDependencies": {
"@ivyhjk/eslint-config-typescript": "^0.0.1-next.5",
"@types/jest": "^29.2.3",
"@types/node": "^22.0.2",
"@typescript-eslint/eslint-plugin": "^8.21.0",
"@typescript-eslint/parser": "^8.0.0",
"eslint": "^8.29.0",
"eslint-config-semistandard": "^17.0.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-import-length": "^1.0.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-simple-import-sort": "^12.0.0",
"husky": "^9.0.10",
"jest": "^29.3.1",
"lint-staged": "^15.0.1",
"semistandard": "^17.0.0",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^5.7.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts": "eslint --fix"
}
}