-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
73 lines (73 loc) · 2.09 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
67
68
69
70
71
72
73
{
"name": "@rubiklabs/nestjs-netgsm-client",
"version": "1.1.0",
"description": "Netgsm client for NestJS",
"author": "Halil Safa SAĞLIK <safa@rubiklabs.com>",
"maintainers": [
"Halil Safa SAĞLIK <safa@rubiklabs.com> (https://ogeday26.com)",
"Tunahan İPEK <tunahan@rubiklabs.com> (https://tunahanipek.com)"
],
"repository": {
"type": "git",
"url": "git+https://github.com/rubiklabs/nestjs-netgsm-client.git"
},
"bugs": {
"url": "https://github.com/rubiklabs/nestjs-netgsm-client/issues"
},
"private": false,
"keywords": [
"nestjs",
"netgsm",
"netgsm-client-sdk",
"nestjs-netgsm",
"nestjs-netgsm-client"
],
"source": "lib/index.ts",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"license": "MIT",
"scripts": {
"prebuild": "rimraf dist",
"build": "tsc && npm run build:index",
"build:index": "rimraf ./index.js ./index.d.ts && tsc -d --skipLibCheck ./index.ts",
"format": "prettier **/**/*.ts --ignore-path ./.prettierignore --write && git status",
"prepublishOnly": "npm run format && npm run build",
"postversion": "git push && git push --tags",
"postinstall": "husky install",
"prepack": "pinst --disable",
"postpack": "pinst --enable"
},
"dependencies": {
"@nestjs/axios": "^1.0.1",
"axios": "1.2.2",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.5.6"
},
"devDependencies": {
"@nestjs/common": "^9.0.11",
"@nestjs/core": "^9.0.11",
"@nestjs/testing": "^9.0.11",
"@types/jest": "^28.1.7",
"@types/node": "^18.7.10",
"@typescript-eslint/eslint-plugin": "^5.34.0",
"@typescript-eslint/parser": "^5.34.0",
"eslint": "^8.22.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.1",
"jest": "^28.1.3",
"lint-staged": "^13.0.3",
"pinst": "^3.0.0",
"prettier": "^2.7.1",
"ts-jest": "^28.0.8",
"typescript": "^4.7.4"
},
"homepage": "https://github.com/rubiklabs/nestjs-netgsm-client#readme",
"directories": {
"lib": "lib"
}
}