-
Notifications
You must be signed in to change notification settings - Fork 64
/
package.json
82 lines (82 loc) · 2.2 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
{
"name": "@mollie/api-client",
"version": "4.1.0",
"license": "BSD-3-Clause",
"description": "Official Mollie API client for Node",
"repository": {
"type": "git",
"url": "https://github.com/mollie/mollie-api-node"
},
"keywords": [
"mollie",
"payment",
"service",
"provider",
"api",
"client",
"payments",
"gateway"
],
"main": "dist/mollie.cjs.js",
"module": "dist/mollie.esm.js",
"jsnext:main": "dist/mollie.esm.js",
"types": "dist/types/types.d.ts",
"engines": {
"node": ">=8"
},
"scripts": {
"prepublish": "yarn build",
"commit": "git-cz",
"prepush": "yarn test",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"test:unit:cov": "jest ./tests/unit --coverage",
"build": "yarn build:library && yarn build:declarations",
"build:library": "rollup --config rollup.config.js",
"build:declarations": "tsc --project tsconfig-declarations.json",
"lint:prettier": "prettier --write \"{src,tests,examples}/**/*.{js,ts}\"",
"lint:eslint": "eslint --ext .ts,.js src/",
"lint:eslint:fix": "eslint --ext .ts,.js --fix src/",
"lint": "yarn lint:eslint:fix && yarn lint:prettier"
},
"dependencies": {
"@types/node-fetch": "^2.6.11",
"node-fetch": "^2.7.0",
"ruply": "^1.0.1"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/preset-env": "^7.25.4",
"@babel/preset-typescript": "^7.24.7",
"@mollie/eslint-config-typescript": "^1.6.5",
"@types/jest": "^29.5.12",
"@types/node": "^22.5.4",
"babel-jest": "^29.7.0",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"dotenv": "^16.4.5",
"eslint": "^8.35.0",
"jest": "^29.7.0",
"jest-bluster": "^2.0.0",
"nock": "^13.5.5",
"nock-record": "^0.3.9",
"prettier": "^3.3.3",
"rollup": "^3.18.0",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"typescript": "^5.6.2"
},
"resolutions": {
"eslint-plugin-import": "^2.26.0"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"files": [
"dist/**/*"
]
}