-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.12 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
72
73
{
"name": "coralpay-node-sdk",
"version": "2.0.3",
"description": "",
"main": "lib/coralpay.js",
"types": "lib/coralpay.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 0",
"build": "tsc",
"lint": "eslint 'src/*.ts'",
"lint:fix": "eslint 'src/*.ts' --fix",
"format": "prettier --write \"src/*.ts\" \"keymanager.js\" ",
"prepare": "npm run build",
"prepublishOnly": "npm run lint && npm run build",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags",
"docgen": "typedoc --out docs src --excludeNotExported --excludePrivate --theme minimal --module commonjs"
},
"keywords": [
"coralpay",
"cgate",
"bank",
"cconnect",
"sdk",
"nodejs",
"npm",
"ussd",
"payments",
"nigeria"
],
"author": "Peter Iyiola",
"homepage": "https://github.com/iyiolapeter/coralpay-node-sdk",
"repository": {
"type": "git",
"url": "https://github.com/iyiolapeter/coralpay-node-sdk"
},
"license": "ISC",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.30.6",
"@typescript-eslint/parser": "^5.30.6",
"eslint": "^8.19.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.1",
"prettier": "^2.7.1",
"typescript": "^4.7.4"
},
"dependencies": {
"@openpgp/web-stream-tools": "^0.0.11",
"@types/node": "^16.0.0",
"axios": "^0.27.2",
"gpg": "^0.6.0",
"locutus": "^2.0.16",
"openpgp": "^5.3.1",
"@types/openpgp-legacy": "npm:@types/openpgp@^4.4.18",
"openpgp-legacy": "npm:[email protected]"
},
"engines": {
"npm": ">=6.9.0"
},
"files": [
"assets/**/*",
"lib/**/*",
"keymanager.js",
"keymanager.d.ts"
],
"husky": {
"hooks": {
"pre-commit": "npm run lint && npm run format && npm run build"
}
}
}