-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.03 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.03 KB
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
{
"name": "node-redsys-api",
"version": "0.0.5",
"dependencies": {
"base64url": "3.0.1"
},
"devDependencies": {
"chai": "4.3.4",
"eslint": "6.8.0",
"eslint-config-airbnb-base": "14.2.1",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-import": "2.23.4",
"eslint-plugin-prettier": "3.4.0",
"mocha": "8.4.0",
"pre-commit": "1.2.2",
"prettier": "2.3.1",
"rewire": "5.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/santiperez/node-redsys-api"
},
"keywords": [
"tpv",
"redsys",
"credit card",
"payment",
"servired",
"4b",
"HMAC SHA256"
],
"scripts": {
"lint": "eslint .",
"units": "mocha ./test/*.js",
"test": "npm run lint && npm run units",
"security": "npm audit"
},
"author": "Santi Pérez",
"license": "MIT",
"bugs": {
"url": "https://github.com/santiperez/node-redsys-api/issues"
},
"homepage": "https://github.com/santiperez/node-redsys-api",
"precommit": [
"test",
"security"
]
}