-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.13 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.13 KB
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
67
68
69
70
71
72
73
74
75
76
77
{
"name": "@muhammedaksam/ayyildiz-node",
"version": "1.0.23",
"description": "Ayyıldız Mobile Node.js SDK",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"LICENSE.md",
"README.md"
],
"scripts": {
"build": "tsc",
"prepare": "pnpm run build",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"format": "prettier --write \"src/**/*.ts\" \"*.{js,json,md}\"",
"format:check": "prettier --check \"src/**/*.ts\" \"*.{js,json,md}\"",
"clean": "rm -rf dist",
"prebuild": "pnpm run clean",
"prepublishOnly": "pnpm run test && pnpm run lint && pnpm run build",
"check-all": "pnpm run lint && pnpm run format:check && pnpm run test",
"version:show": "npx tsx scripts/version-helper.ts show",
"version:update": "npx tsx scripts/version-helper.ts update",
"version:bump": "npx tsx scripts/version-helper.ts update"
},
"keywords": [
"ayyildiz",
"ayyildizmobile",
"verify",
"sms",
"api",
"sdk",
"api-client",
"typescript",
"nodejs",
"javascript"
],
"author": "Muhammed Mustafa AKŞAM <info@muhammedaksam.com.tr> (https://github.com/muhammedaksam)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/muhammedaksam/ayyildiz-node.git"
},
"bugs": {
"url": "https://github.com/muhammedaksam/ayyildiz-node/issues"
},
"homepage": "https://github.com/muhammedaksam/ayyildiz-node#readme",
"packageManager": "pnpm@10.23.0",
"dependencies": {
"axios": "^1.16.1"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/jest": "^30.0.0",
"@types/node": "^25.9.0",
"@typescript-eslint/eslint-plugin": "^8.59.4",
"@typescript-eslint/parser": "^8.59.4",
"eslint": "^10.4.0",
"jest": "^30.4.2",
"prettier": "^3.8.3",
"ts-jest": "^29.4.9",
"tsx": "^4.22.2",
"typescript": "^6.0.3"
},
"engines": {
"node": ">=18",
"pnpm": "^10.23.0"
},
"publishConfig": {
"access": "public",
"provenance": true
}
}