-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
48 lines (48 loc) · 954 Bytes
/
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": "paystack-node",
"version": "0.3.0",
"description": "A NodeJS wrapper for the Paystack API",
"main": "index.js",
"files": [
"src",
"index.js"
],
"directories": {
"test": "test"
},
"scripts": {
"test": "mocha \"test/*.test.js\""
},
"keywords": [
"paystack",
"payments",
"nodejs",
"api-endpoints",
"rest-api"
],
"author": "StitchNG <[email protected]> (https://twitter.com/stitchappn)",
"license": "MIT",
"standard": {
"globals": [
"describe",
"it"
]
},
"dependencies": {
"got": "^9.3.2",
"lodash": "^4.17.21"
},
"devDependencies": {
"chai": "^4.2.0",
"mocha": "^5.2.0",
"standard": "^12.0.1"
},
"repository": {
"type": "git",
"url": "https://github.com/stitchng/paystack.git"
},
"bugs": {
"url": "https://github.com/stitchng/paystack/issues"
},
"homepage": "https://github.com/stitchng/paystack#readme"
}