-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
112 lines (112 loc) · 3.2 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "nestjs-sap-rfc",
"version": "4.1.7",
"author": "Grupo Boticário",
"description": "NestJS SAP RFC Client, providing convenient ABAP business logic consumption from NestJS",
"license": "MIT",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/grupoboticario/nestjs-sap-rfc.git"
},
"bugs": "https://github.com/grupoboticario/nestjs-sap-rfc/issues",
"scripts": {
"prepare": "is-ci || husky",
"prebuild": "rimraf dist",
"build": "nest build",
"format": "prettier --write ./**/*.{ts,js,json}",
"lint": "eslint lib/**/*.ts --fix",
"test": "jest --passWithNoTests",
"test:watch": "jest --watchAll --passWithNoTests",
"test:cov": "jest --coverage --passWithNoTests",
"test:e2e": "jest --forceExit --detectOpenHandles --config ./test/jest-e2e.json",
"fix": "npm run format && npm run lint",
"doc": "npx @compodoc/compodoc -p tsconfig.build.json",
"doc:serve": "npm run doc && npx @compodoc/compodoc -s",
"precommit": "lint-staged && npm run lint",
"prepush": "npm run test",
"commit": "cz",
"github:pages": "gh-pages -d documentation",
"semantic-release": "semantic-release"
},
"keywords": [
"nestjs",
"sap",
"rfc",
"nodejs"
],
"dependencies": {
"node-rfc": "^3.3.1"
},
"peerDependencies": {
"@nestjs/common": "9.x || 10.x",
"@nestjs/core": "9.x || 10.x"
},
"devDependencies": {
"@commitlint/cli": "^19.6.0",
"@commitlint/config-conventional": "^19.6.0",
"@compodoc/compodoc": "^1.1.26",
"@nestjs/cli": "^10.4.8",
"@nestjs/common": "^10.4.8",
"@nestjs/core": "^10.4.8",
"@nestjs/schematics": "^10.2.3",
"@nestjs/testing": "^10.4.8",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.1",
"@semantic-release/npm": "^12.0.1",
"@semantic-release/release-notes-generator": "^14.0.1",
"@types/jest": "^29.5.14",
"@types/node": "^22.9.3",
"@typescript-eslint/eslint-plugin": "^8.15.0",
"@typescript-eslint/parser": "^8.15.0",
"commitizen": "^4.3.1",
"eslint": "^9.15.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^28.9.0",
"eslint-plugin-prettier": "^5.2.1",
"gh-pages": "^6.2.0",
"husky": "^9.1.7",
"is-ci": "^3.0.1",
"jest": "^29.7.0",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"reflect-metadata": "^0.2.2",
"rimraf": "^6.0.1",
"semantic-release": "^24.2.0",
"ts-jest": "^29.2.5",
"ts-loader": "^9.5.1",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.7.2"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts",
"node"
],
"rootDir": "lib",
"testRegex": ".*\\.spec\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": [
"**/*.(t|j)s"
],
"coverageDirectory": "../coverage",
"testEnvironment": "node"
},
"overrides": {
"conventional-changelog-conventionalcommits": ">= 8.0.0"
}
}