-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathpackage.json
71 lines (71 loc) · 1.88 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "recurring",
"description": "a recurly v2 api client for node.js",
"version": "2.7.0",
"bugs": "http://github.com/ceejbot/recurring/issues",
"contributors": [
"C J Silverio <[email protected]> (http://ceejbot.github.io/)",
"Julian Gautier <[email protected]> (http://www.juliangautier.com/)",
"Simon Tabor",
"T J @surttour",
"Peter Shugar",
"Mark Garlanger @mgarlanger",
"Tom Kirkpatrick @mrfelton"
],
"dependencies": {
"async-iterators": "0.2.2",
"bluebird": "3.5.0",
"data2xml": "1.2.5",
"debug": "3.0.0",
"lodash": "4.17.4",
"qs": "6.5.0",
"request": "2.81.0",
"throttled-request": "0.1.1",
"uuid": "3.1.0",
"xml2js": "0.4.18"
},
"devDependencies": {
"conventional-commit-types": "2.2.0",
"eslint": "3.8.0",
"eslint-config-standard": "6.2.0",
"eslint-plugin-mocha": "4.7.0",
"eslint-plugin-promise": "3.0.0",
"eslint-plugin-standard": "2.0.1",
"ghooks": "1.3.2",
"isparta": "4.0.0",
"mocha": "3.1.2",
"must": "0.13.4",
"nock": "9.0.14",
"validate-commit-msg": "2.8.2"
},
"directories": {
"test": "test"
},
"keywords": [
"recurly",
"payments"
],
"license": "MIT",
"main": "lib/index.js",
"readmeFilename": "README.md",
"repository": {
"type": "git",
"url": "git://github.com/ceejbot/recurring.git"
},
"scripts": {
"lint": "eslint './{lib,test}/**/*.js'",
"posttest": "npm run lint",
"coverage": "cat ./coverage/lcov.info | coveralls",
"test": "node ./node_modules/.bin/isparta cover --report text --report lcov _mocha -- --timeout=120000 test/*.js",
"test:watch": "npm run test -- -w",
"outdated": "npm outdated --depth=0"
},
"config": {
"ghooks": {
"commit-msg": "validate-commit-msg"
},
"validate-commit-msg": {
"types": "conventional-commit-types"
}
}
}