-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
65 lines (65 loc) · 1.71 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
{
"name": "cmi-payment-nodejs",
"version": "1.1.4",
"description": "npm package to communicate with the CMI payment plateform in Morocco",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"engines": {
"node": ">=8.0.0 <22.0.0"
},
"scripts": {
"build": "tsc",
"format": "prettier --write \"src/**/*.(js|ts)\"",
"lint": "eslint src --ext .js,.ts",
"lint:fix": "eslint src --fix --ext .js,.ts",
"test": "jest --config jest.config.js",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aitmiloud/cmi-node"
},
"keywords": [
"cmi",
"cmi nodejs package",
"cmi npm package",
"cmi online payment",
"payment processing",
"morocco payment",
"cmi payment",
"payment in morocco",
"paiement en ligne cmi",
"cmi paiement en ligne",
"paiement en ligne maroc",
"cmi paiement node",
"cmi payment node"
],
"author": {
"name": "Aitmiloud Mohamed",
"email": "[email protected]",
"url": "https://atzapps.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/aitmiloud/cmi-node/issues"
},
"homepage": "https://github.com/aitmiloud/cmi-node#readme",
"devDependencies": {
"@types/jest": "29.4.0",
"@typescript-eslint/eslint-plugin": "5.54.0",
"@typescript-eslint/parser": "5.52.0",
"eslint": "8.35.0",
"eslint-plugin-jest": "27.2.1",
"jest": "29.4.3",
"prettier": "2.8.4",
"ts-jest": "29.0.5",
"typescript": "4.9.5"
},
"files": [
"lib/**/*"
]
}