-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
43 lines (43 loc) · 1.1 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
{
"name": "fedapay",
"version": "1.2.3",
"description": "NodeJs library for FedaPay Api",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prepublish": "npm run build",
"build": "tsc",
"watch": "tsc -w",
"spec": "mocha -r ts-node/register",
"test": "mocha -r ts-node/register test/*.ts"
},
"keywords": [
"fedapay",
"payment processing",
"mobile money",
"credit cards",
"api"
],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/chai": "^4.1.3",
"@types/chai-http": "^3.0.4",
"@types/faker": "^4.1.2",
"@types/mocha": "^5.2.7",
"@types/node": "^8.10.62",
"chai": "^4.1.2",
"chai-http": "^4.4.0",
"faker": "^4.1.0",
"mocha": "^10.4.0",
"nock": "^9.2.6",
"ts-node": "^6.0.3",
"typescript": "^4.9.5"
},
"dependencies": {
"@types/pluralize": "0.0.28",
"axios": "^0.28.0",
"lodash.isplainobject": "^4.0.6",
"pluralize": "^7.0.0"
}
}