-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·53 lines (53 loc) · 1.25 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
{
"name": "@reyco1/nestjs-stripe",
"version": "2.0.1",
"description": "A NestJS module for Stripe integration supporting one-time payments and subscriptions",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": "./scripts/post-install.js",
"repository": {
"type": "git",
"url": "git+https://github.com/reyco1/nestjs-stripe"
},
"bugs": {
"url": "https://github.com/reyco1/nestjs-stripe/issues"
},
"homepage": "https://github.com/reyco1/nestjs-stripe#readme",
"files": [
"dist/**/*",
"scripts/**/*"
],
"scripts": {
"build": "tsc",
"prepare": "npm run build",
"test": "jest",
"postinstall": "node ./scripts/post-install.js"
},
"keywords": [
"nestjs",
"stripe",
"payments",
"subscriptions"
],
"author": "reyco",
"license": "MIT",
"peerDependencies": {
"@nestjs/common": "^10.0.0",
"@nestjs/core": "^10.0.0",
"stripe": "^17.6.0"
},
"devDependencies": {
"@nestjs/common": "^10.0.0",
"@nestjs/core": "^10.0.0",
"@nestjs/testing": "^10.0.0",
"@types/jest": "^29.5.0",
"@types/node": "^20.0.0",
"jest": "^29.5.0",
"stripe": "^17.6.0",
"ts-jest": "^29.1.0",
"typescript": "^5.0.0"
},
"dependencies": {
"express": "^4.21.2"
}
}