-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 867 Bytes
/
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
{
"name": "paypalec.js",
"version": "0.2.3",
"description": "Service to invoke paypal nvp for express checkout",
"main": "PaypalService.js",
"scripts": {
"test": "mocha"
},
"repository" :
{ "type" : "git"
, "url" : "https://github.com/auridevil/paypalec.js"
},
"engines": {
"node": ">=4.3.0"
},
"keywords": [
"paypal",
"nvp",
"nodejs"
],
"author": "Aureliano Bergese",
"license": "MIT",
"devDependencies": {
"assert": "^1.3.0",
"babel": "^6.5.2",
"babel-cli": "^6.5.1",
"babel-preset-es2015": "^6.5.0",
"chai": "^3.5.0",
"grunt": "^0.4.5",
"grunt-babel": "^6.0.0",
"grunt-cli": "^0.1.13",
"load-grunt-tasks": "^3.4.0",
"mocha": "^2.4.5",
"path": "^0.12.7"
},
"dependencies": {
"querystring": "^0.2.0",
"request": "^2.69.0",
"underscore": "^1.8.3"
}
}