-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
43 lines (43 loc) · 862 Bytes
/
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
{
"name": "redsys-pos",
"version": "1.0.2",
"description": "Node JS library to ease the communication with RedSys point of sales",
"main": "src/index.js",
"scripts": {
"precommit": "lint-staged",
"test": "cd spec && npm i && npm t"
},
"keywords": [
"redsys",
"sabadell",
"caixabank",
"tpv",
"pos",
"payment",
"virtual",
"credit",
"card",
"bank",
"wrapper",
"library",
"api"
],
"author": "Jordi Moraleda <[email protected]>, Joel Moreno <[email protected]>",
"license": "MIT",
"dependencies": {
"base64url": "^3.0.0"
},
"devDependencies": {
"babel-eslint": "^8.2.3",
"eslint": "^4.19.1",
"husky": "^0.14.3",
"lint-staged": "^7.0.0",
"prettier": "^1.13.0"
},
"lint-staged": {
"*.{js,json,css}": [
"prettier --write",
"git add"
]
}
}