forked from dziamid/creditguard-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.14 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
{
"name": "creditguard",
"version": "1.1.0",
"description": "Simple wrapper for Creditguard API",
"homepage": "https://github.com/mderazon/creditguard-node",
"author": "Michael DeRazon <[email protected]> (https://drzon.net)",
"license": "MIT",
"files": [
"lib/**"
],
"repository": {
"type": "git",
"url": "git://github.com/mderazon/creditguard-node.git"
},
"bugs:": "https://github.com/mderazon/creditguard-node/issues",
"engines": {
"node": ">= 7.6.0"
},
"main": "./lib/creditguard",
"dependencies": {
"debug": "^3.1.0",
"jsontoxml": "^0.1.0",
"pretty-data": "^0.40.0",
"request": "^2.83.0",
"request-promise": "^4.2.1",
"xml2js": "^0.4.19"
},
"devDependencies": {
"babel-eslint": "^8.1.2",
"chai": "^4.1.2",
"eslint": "^4.14.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.6.0",
"mocha": "^4.0.1",
"prettier": "^1.9.2"
},
"scripts": {
"test": "prettier -l --single-quote **/*.js && eslint . && mocha -t 5000 test/test-*.js"
},
"contributors": [
"dearwish <[email protected]>"
]
}