-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
51 lines (51 loc) · 1.29 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
{
"author": "Andrew Throener",
"name": "paypal-payflow-sdk",
"description": "NodeJS SDK for PayFlowT APIs",
"version": "0.1.0",
"homepage": "https://github.com/trainerbill/paypal-payflow-sdk",
"keywords": [
"paypal",
"payflow",
"nodejs",
"sdk"
],
"repository": {
"type": "git",
"url": "https://github.com/trainerbill/paypal-payflow-sdk"
},
"bugs": {
"url": "https://github.com/trainerbill/paypal-payflow-sdk/issues",
"email": "athroener@mystartupsolutions.com"
},
"licenses": [
{
"url": "https://github.com/trainerbill/paypal-payflow-sdk/blob/master/LICENSE.txt"
}
],
"engines": {
"node": ">= v0.6.0"
},
"main": "./index.js",
"dependencies": {
"node-uuid": "*",
"underscore":"1.6.0"
},
"devDependencies": {
"chai": "*",
"mocha": "*",
"grunt": "~0.4.1",
"grunt-contrib-jshint": "~0.3.0",
"grunt-simple-mocha": "~0.4.0",
"mocha-lcov-reporter": "0.0.1",
"blanket": "~1.1.5",
"coveralls": "~2.0.16"
},
"scripts": {
"blanket": {
"pattern": "paypal-payflow-sdk.js"
},
"test": "grunt"
},
"readmeFilename": "README.md"
}