This repository has been archived by the owner on Apr 8, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.67 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
{
"name": "@discue/paddle-integration-firestore",
"author": "Stefan Pfaffel",
"license": "MIT",
"version": "0.23.1",
"description": "Paddle payments integration for Google Cloud Firestore",
"main": "lib/index",
"files": [
"lib"
],
"exports": {
".": "./lib/index.js",
"./client": "./lib/client/index.js",
"./server": "./lib/index.js"
},
"scripts": {
"emulators": "firebase emulators:start",
"test": "mocha test/spec/**/*.spec.js --check-leaks --timeout 50000 --file test/global-mocha-setup.js",
"test-e2e": "playwright test test-e2e/spec",
"lint": "eslint -c .eslintrc.json lib",
"release": "standard-version && git push --follow-tags origin && npm publish",
"release-minor": "standard-version --release-as minor && git push --follow-tags origin && npm publish",
"paddle-webhook-tunnel": "lt --port 3456 --subdomain xxrrii533vj7h9qipggbkbze"
},
"repository": {
"type": "git",
"url": "git+https://github.com/discue/paddle-integration-firestore.git"
},
"bugs": {
"url": "https://github.com/discue/paddle-integration-firestore/issues"
},
"homepage": "https://github.com/discue/paddle-integration-firestore#readme",
"keywords": [
"paddle",
"payments",
"firestore"
],
"devDependencies": {
"@playwright/test": "^1.42.1",
"chai": "^4.4.1",
"eslint": "^8.57.0",
"express": "^4.19.2",
"firebase-tools": "^13.6.0",
"localtunnel": "^2.0.2",
"mocha": "^10.4.0",
"node-amy": "^3.7.0",
"nodemon": "^3.1.0",
"puppeteer": "^22.6.1",
"standard-version": "^9.5.0"
},
"dependencies": {
"firebase-admin": "^12.0.0",
"got": "^14.2.1",
"html-entities": "^2.5.2"
}
}