-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.21 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
{
"name": "nequi",
"version": "1.2.3",
"description": "Nequi API wrapper",
"bugs:": "https://github.com/dolcalmi/nequi-node/issues",
"engines": {
"node": ">=8.16.0"
},
"main": "lib/nequi.js",
"repository": {
"type": "git",
"url": "[email protected]:dolcalmi/nequi-node.git"
},
"author": "Juan P Lopez <[email protected]>",
"private": false,
"keywords": [
"nequi",
"sdk",
"api"
],
"homepage": "https://github.com/dolcalmi/nequi-node",
"devDependencies": {
"chai": "^4.3.6",
"chai-as-promised": "^7.1.1",
"coveralls": "^3.1.1",
"eslint": "^8.9.0",
"eslint-plugin-chai-friendly": "^0.7.2",
"mocha": "^9.2.0",
"nyc": "^15.1.0"
},
"dependencies": {
"aws4": "^1.11.0",
"bluebird": "^3.7.2",
"lodash.isplainobject": "^4.0.6",
"nanoid": "^3.2.0",
"safe-buffer": "^5.2.1"
},
"license": "MIT",
"scripts": {
"clean": "rm -rf ./.nyc_output ./node_modules/.cache ./coverage",
"mocha": "nyc mocha",
"test": "npm run lint && npm run mocha",
"lint": "eslint .",
"lint-fix": "eslint . --fix",
"report": "nyc -r text -r lcov report",
"coveralls": "cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
}
}