-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
75 lines (75 loc) · 1.67 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
{
"name": "mollie-es6",
"version": "3.1.0",
"description": "Mollie module in ES6",
"main": "app.js",
"scripts": {
"test": "./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha -- ./test/ --recursive --timeout 5000",
"lint": "$(npm bin)/eslint .",
"eslint-pre-commit": "./scripts/eslint-pre-commit",
"auto-test": "nodemon --ignore coverage/ -x \"npm test && npm run lint\""
},
"engines": {
"node": ">=6.0.0"
},
"pre-commit": [
"eslint-pre-commit",
"lint",
"test"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Geexteam/mollie-ES6.git"
},
"keywords": [
"mollie",
"mollie-es6",
"payments-es6",
"payments",
"creditcard",
"ideal",
"bancontact",
"belfius",
"kbc",
"payments",
"payment",
"sepa",
"bitcoin",
"paypal",
"payment provider",
"mollie api",
"incasso",
"banktransfer",
"banking",
"paysafecard",
"intersolve",
"giftcards",
"podiumcadeaukaart",
"fashioncheque",
"yourgift",
"vvvgiftcard",
"webshopgiftcard"
],
"author": "Renzo Roso <renzo@geex.company>",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/Geexteam/mollie-ES6/issues"
},
"homepage": "https://github.com/Geexteam/mollie-ES6#readme",
"dependencies": {
"lodash": "^4.17.4",
"obj-denied": "^1.3.1",
"superagent": "^3.8.0"
},
"devDependencies": {
"co": "^4.6.0",
"eslint": "^4.10.0",
"eslint-config-defaults": "^9.0.0",
"eslint-plugin-filenames": "^1.2.0",
"istanbul": "^0.4.5",
"mocha": "^4.0.1",
"pre-commit": "^1.2.2",
"should": "^13.1.3",
"sinon": "^4.0.2"
}
}