-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 loc) · 1.56 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
{
"name": "@ekoindia/aeps-gateway-lib",
"version": "1.5.2",
"description": "A small Javascript library to integrate Eko's AePS Gateway solution into any website to enable Cash-Out",
"browser": "build/aeps-gateway-lib.js",
"main": "build/aeps-gateway-lib.js",
"module": "src/aeps-gateway-lib.js",
"moduleVar": "EkoAEPSGateway",
"scripts": {
"build": "gulp build",
"test": "jest",
"prepare": "npm run build",
"trypublish": "npm publish --access=public || true",
"check-updates": "npm outdated --depth=0"
},
"repository": {
"type": "git",
"url": "https://github.com/ekostore/aeps-gateway-lib"
},
"files": [
"build/aeps-gateway-lib.js"
],
"author": "Kumar Abhishek (https://github.com/manustays)",
"contributors": [
"Himanshi Gupta (https://github.com/himanshigupta29)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/ekostore/aeps-gateway-lib/issues"
},
"homepage": "https://github.com/ekostore/aeps-gateway-lib",
"keywords": [
"aeps",
"cashout",
"eko",
"javascript-library"
],
"publishConfig": {
"access": "public"
},
"devDependencies": {
"del": "^6.1.1",
"gulp": "^4.0.2",
"gulp-eslint": "^6.0.0",
"gulp-header": "^2.0.9",
"gulp-size": "^4.0.1",
"gulp-uglify": "^3.0.2",
"jest": "^28.1.3"
},
"dependencies": {},
"jest": {
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/scripts/testMock.js",
"\\.(css|less)$": "<rootDir>/scripts/testMock.js"
}
}
}