-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
49 lines (49 loc) · 1.43 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": "culqi-node",
"version": "2.1.0",
"description": "Typescript wrapper for Culqi web services developed for Node.js with 0 runtime dependencies",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"release": "npm run build && node scripts/prepublish.js && npm publish ./dist",
"build": "tsc --project ./tsconfig.json",
"lint": "eslint --ignore-path .gitignore --ext .ts,.tsx .",
"test": "jest --runInBand",
"test:coverage": "npm test -- --coverage",
"coveralls": "cat ./coverage/lcov.info | coveralls"
},
"repository": {
"type": "git",
"url": "https://github.com/giwiro/culqi-node.git"
},
"keywords": [
"culqi",
"payment-processor",
"pasarela",
"pagos",
"payment",
"node",
"nodejs"
],
"author": "Gi Wah Dávalos Loo <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/giwiro/culqi-node/issues"
},
"homepage": "https://github.com/giwiro/culqi-node#readme",
"devDependencies": {
"@types/jest": "^27.4.1",
"@types/node": "^14.0.11",
"@typescript-eslint/eslint-plugin": "^6.2.1",
"@typescript-eslint/parser": "^6.2.1",
"coveralls": "^3.1.1",
"eslint": "^8.46.0",
"eslint-config-prettier": "^8.9.0",
"eslint-plugin-jest": "^27.2.3",
"eslint-plugin-prettier": "^5.0.0",
"jest": "^29.6.2",
"prettier": "^3.0.0",
"ts-jest": "^29.1.1",
"typescript": "^5.1.6"
}
}