-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.09 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
{
"name": "instamojo-payment-nodejs",
"version": "3.0.0",
"description": "Promise based Instamojo payment gateway integration for NodeJS",
"main": "main.js",
"scripts": {
"test": "jest --coverage",
"testing": "npm run test -- --watch"
},
"husky": {
"hooks": {
"pre-commit": "npm test"
}
},
"jest": {
"collectCoverageFrom": [
"src/*.js"
],
"coverageThreshold": {
"global": {
"branches": 30,
"functions": 100,
"lines": 75,
"statements": 75
}
}
},
"repository": {
"type": "git",
"url": "git://github.com/CodingCreate101/instamojo-payment-nodejs.git"
},
"bugs": {
"url": "https://github.com/CodingCreate101/instamojo-payment-nodejs/issues"
},
"keywords": [
"Instamojo",
"payment",
"nodejs",
"gateway"
],
"author": {
"name": "Tejas H",
"email": "tejas.soe@gmail.com",
"url": "https://github.com/CodingCreate101"
},
"license": "MIT",
"dependencies": {
"axios": "^0.19.2"
},
"devDependencies": {
"husky": "^4.2.5",
"jest": "^26.4.0"
}
}