-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.42 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
{
"name": "ycp-sdk-ts",
"version": "1.0.2",
"description": "Unofficial YouCan Pay NodeJS SDK built using Typescript",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"test": "jest --config jestconfig.json",
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "pnpm exec eslint \"src/**/*.ts\"",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/skuidma/ycp-sdk-ts.git"
},
"keywords": [
"youcanpay",
"youcan",
"youcanpay-sdk"
],
"author": "Mehdi Bounya",
"license": "MIT",
"packageManager": "[email protected]",
"bugs": {
"url": "https://github.com/skuidma/ycp-sdk-ts/issues"
},
"homepage": "https://github.com/skuidma/ycp-sdk-ts#readme",
"devDependencies": {
"@tsconfig/node16": "^16.1.3",
"@types/jest": "^29.5.14",
"@types/node": "^22.8.7",
"@typescript-eslint/eslint-plugin": "^8.13.0",
"@typescript-eslint/parser": "^8.13.0",
"eslint": "^9.14.0",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"ts-jest": "^29.2.5",
"typescript": "^5.6.3"
},
"files": [
"lib/**/*"
],
"dependencies": {
"axios": "^1.7.7"
},
"engines": {
"node": "^16 || ^18 || ^20 || ^21"
}
}