-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.22 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
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "paymob-next-node",
"version": "1.0.0",
"description": "",
"main": "index.js",
"private": "false",
"scripts": {
"build": "webpack --config webpack.config.js --mode=production",
"dev": "npm run build && nodemon './src/paymob-marketplace'",
"commit": "git-cz",
"local:server": "nodemon './src/paymob-marketplace'",
"generate:doc": "jsdoc -c './jsdoc.json'",
"test": "jest --config ./jest.config.json",
"test:watch": "npm run test -- --watch",
"test:coverage": "npm run test -- --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/misraX/paymob-next-node.git"
},
"keywords": [
"paymob",
"next",
"payments",
"intention",
"nodejs"
],
"author": {
"name": "Paymob",
"url": "https://www.paymob.com/"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/misraX/paymob-next-node/issues"
},
"homepage": "https://github.com/misraX/paymob-next-node#readme",
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/eslint-plugin": "^7.12.1",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-transform-async-to-generator": "^7.12.1",
"@babel/plugin-transform-runtime": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"@babel/register": "^7.13.0",
"babel-cli": "^6.26.0",
"babel-loader": "^8.1.0",
"body-parser": "^1.19.0",
"chai": "^4.3.4",
"cors": "^2.8.5",
"cz-conventional-changelog": "^3.3.0",
"dotenv-defaults": "^2.0.1",
"dotenv-webpack": "^7.0.2",
"eslint": "^7.12.1",
"eslint-webpack-plugin": "^2.2.0",
"express": "^4.17.1",
"jest": "^27.4.5",
"jsdoc": "^3.6.6",
"lodash": "^4.17.21",
"mocha": "^9.1.3",
"nodemon": "^2.0.12",
"webpack": "^5.51.1",
"webpack-bundle-analyzer": "^4.4.0",
"webpack-cli": "^4.8.0",
"webpack-dev-server": "^3.11.0"
},
"dependencies": {
"node-fetch": "^2.6.1"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
},
"ghooks": {
"pre-commit": "npm run lint"
}
},
"jest": {
"collectCoverage": true,
"collectCoverageFrom": ["./src/**"],
"coverageThreshold": {
"global": {
"lines": 10
}
}
}
}