-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
56 lines (56 loc) · 1.39 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
52
53
54
55
56
{
"name": "authorize-net-arb",
"version": "0.0.4",
"description": "Authorize.net Automated Recurring Billing (ARB)",
"homepage": "https://github.com/reywood/node-authorize-net-arb",
"bugs": {
"url": "https://github.com/reywood/node-authorize-net-arb/issues"
},
"author": {
"name": "Sean Dwyer",
"email": "[email protected]",
"url": "http://braindump.io"
},
"keywords": [
"authorize.net",
"auth.net",
"arb",
"automated",
"recurring",
"billing",
"credit card",
"subscription"
],
"main": "lib/arb.js",
"files": [
"lib/",
"LICENSE.txt"
],
"repository": {
"type": "git",
"url": "git://github.com/reywood/node-authorize-net-arb.git"
},
"scripts": {
"test": "grunt",
"coverage": "./node_modules/.bin/istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec tests/unit/**/*-spec.js && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"
},
"license": "ISC",
"engines": {
"node": ">= 0.10.0"
},
"devDependencies": {
"coveralls": "^2.11.1",
"grunt": "^0.4.5",
"grunt-contrib-jshint": "^0.10.0",
"grunt-simple-mocha": "^0.4.0",
"istanbul": "^0.3.0",
"mocha": "^1.20.1",
"mocha-lcov-reporter": "0.0.1",
"should": "^4.0.4"
},
"dependencies": {
"underscore": "^1.6.0",
"xml": "^0.0.12",
"xml2js": "^0.4.4"
}
}