-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.1 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.1 KB
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
{
"dependencies": {
"axios": "^0.27.2"
},
"name": "paypal-v2-sdk",
"version": "2.4.2",
"description": "Unofficial promise-based object-oriented PayPal API v2 SDK for node.js",
"main": "./dist/index.js",
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"compile": "rmdir dist -r && tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TheRealEmissions/paypal-v2-sdk.git"
},
"author": "therealemissions",
"license": "MIT",
"bugs": {
"url": "https://github.com/TheRealEmissions/paypal-v2-sdk/issues"
},
"homepage": "https://github.com/TheRealEmissions/paypal-v2-sdk#readme",
"keywords": [
"paypal",
"node",
"async",
"promise",
"rest",
"sdk",
"api",
"invoice",
"wrapper",
"object",
"oop"
],
"devDependencies": {
"@types/node": "^18.7.23",
"prettier": "^2.7.1",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typedoc-plugin-missing-exports": "^1.0.0"
},
"files": [
"dist/**/*"
],
"types": "dist/index.d.ts"
}