forked from mollie/mollie-api-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.27 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": "3.6.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/src/types.d.ts",
"engines": {
"node": ">=6.14"
},
"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": {
"axios": "^0.25.0"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.16.7",
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7",
"@mollie/eslint-config-typescript": "^1.6.5",
"@types/jest": "24.9.0",
"@types/node": "^17.0.17",
"@typescript-eslint/eslint-plugin": "^5.11.0",
"axios-mock-adapter": "1.19.0",
"babel-jest": "^27.5.1",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"dotenv": "^16.0.0",
"eslint": "^8.8.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "24.9.0",
"jest-bluster": "^1.0.1",
"nock": "^13.2.4",
"nock-record": "^0.3.9",
"prettier": "^2.5.1",
"rollup": "^2.67.2",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"ruply": "^1.0.0",
"typescript": "^4.5.5"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"files": [
"dist/**/*"
]
}