forked from tjmehta/rest-api-sdk-nodejs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.16 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.16 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
50
{
"author": "PayPal <DL-PP-Platform-NodeJs-SDK@ebay.com> (https://developer.paypal.com/)",
"name": "paypal-rest-sdk",
"description": "SDK for PayPal REST APIs",
"version": "0.6.3",
"homepage": "https://github.com/paypal/rest-api-sdk-nodejs",
"keywords": [
"paypal",
"rest",
"api",
"sdk"
],
"repository": {
"type": "git",
"url": "https://github.com/paypal/rest-api-sdk-nodejs.git"
},
"bugs": {
"url": "https://github.com/paypal/rest-api-sdk-nodejs/issues",
"email": "DL-PP-Platform-NodeJs-SDK@ebay.com"
},
"licenses": [
{
"url": "https://github.com/paypal/rest-api-sdk-nodejs/blob/master/LICENSE.txt"
}
],
"engines": {
"node": ">= v0.6.0"
},
"main": "./index.js",
"dependencies": {
"node-uuid": "*"
},
"devDependencies": {
"chai": "*",
"mocha": "*",
"grunt": "~0.4.1",
"grunt-contrib-jshint": "~0.3.0",
"grunt-simple-mocha": "~0.3.2",
"mocha-lcov-reporter": "0.0.1",
"blanket": "~1.1.5",
"coveralls": "~2.0.16"
},
"scripts": {
"blanket": {
"pattern": "paypal-rest-sdk.js"
},
"test": "mocha -t 60000"
},
"readmeFilename": "README.md"
}