-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.27 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
{
"name": "nestjs-xendit",
"version": "0.1.2",
"description": "NestJS Package wrapper for xendit-node package",
"main": "dist/index.js",
"scripts": {
"build": "rimraf dist && tsc",
"prepublish": "npm run build",
"prepare": "npm run build",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "tslint -p tsconfig.json -c tslint.json",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage"
},
"author": "arcphysx",
"license": "MIT",
"dependencies": {
"@nestjs/common": "^10.2.7",
"@nestjs/core": "^10.2.8",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.8.1",
"xendit-node": "^3.4.0"
},
"types": "dist/index.d.ts",
"devDependencies": {
"@golevelup/ts-jest": "^0.4.0",
"@nestjs/testing": "^10.2.8",
"@types/jest": "^29.5.7",
"@types/node": "^20.8.8",
"@types/supertest": "^2.0.15",
"jest": "^29.7.0",
"prettier": "^3.0.3",
"rimraf": "^5.0.5",
"supertest": "^6.3.3",
"ts-jest": "^29.1.1",
"tslint": "^6.1.3",
"typescript": "^5.2.2"
},
"keywords": [
"nestjs",
"nestjs-xendit",
"xendit"
],
"repository": {
"type": "git",
"url": "https://github.com/arcphysx/nestjs-xendit"
},
"bugs": "https://github.com/arcphysx/nestjs-xendit"
}