forked from robrighter/node-recurly
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
35 lines (35 loc) · 876 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
{
"name": "node-recurly",
"description": "Library for accessing the api for the Recurly recurring billing service.",
"keywords": [
"recurly",
"e-commerce",
"recurring billing"
],
"version": "2.1.3",
"homepage": "https://github.com/robrighter/node-recurly",
"author": "Rob Righter <[email protected]> (http://github.com/robrighter)",
"contributors": [
"Iván Guardado <[email protected]> (http://github.com/IvanGuardado)",
"Rob Righter <[email protected]> (http://github.com/robrighter)"
],
"bugs": {
"web": "https://github.com/robrighter/node-recurly/issues"
},
"directories": {
"lib": "./lib"
},
"main": "./lib/recurly.js",
"dependencies": {
"xml2js": "0.4.18"
},
"engines": {
"node": ">= 0.4"
},
"scripts": {
"test": "mocha test"
},
"devDependencies": {
"mocha": "^10.0.0"
}
}