forked from GuyAwesomeOrg/Checkout-NodeJS-SDK
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·42 lines (42 loc) · 1.14 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
{
"name": "@paypal/checkout-server-sdk",
"version": "1.0.2",
"description": "NodeJS SDK for PayPal Checkout APIs",
"keywords": [],
"homepage": "https://github.com/paypal/Checkout-NodeJS-SDK#readme",
"author": "[email protected] (https://developer.paypal.com/)",
"main": "index",
"directories": {
"lib": "lib"
},
"repository": {
"type": "git",
"url": "https://github.com/paypal/Checkout-NodeJS-SDK.git"
},
"engines": {
"node": ">=8"
},
"dependencies": {
"@paypal/paypalhttp": "^1.0.0"
},
"devDependencies": {
"btoa": "^1.2.1",
"chai": "^4.1.2",
"dirty-chai": "^2.0.1",
"eslint": "^2.7.0",
"eslint-config-braintree": "^1.0.0",
"mocha": "^5.2.0",
"prompt": "^1.0.0",
"nock": "^9.6.1",
"sinon": "^2.3.2"
},
"license": "SEE LICENSE IN https://github.com/paypal/Checkout-NodeJS-SDK/blob/master/LICENSE",
"scripts": {
"test:integration": "mocha spec --recursive",
"test": "npm run test:integration",
"test:orders": "mocha spec/orders --recursive --timeout 60000"
},
"bugs": {
"url": "https://github.com/paypal/Checkout-NodeJS-SDK/issues"
}
}