-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 983 Bytes
/
package.json
File metadata and controls
49 lines (49 loc) · 983 Bytes
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
{
"name": "visma-pay",
"version": "2.0.4",
"description": "Visma Pay library",
"main": "lib/vismapay.js",
"files": [
"example/*",
"tests/*",
"jest.config.js"
],
"scripts": {
"lint": "eslint .",
"test": "npm run lint && jest tests",
"run-example": "node example/server/server.js"
},
"keywords": [
"visma",
"visma pay",
"payment"
],
"author": "Visma Pay (https://www.visma.fi/vismapay)",
"devDependencies": {
"dotenv": "^16.3.1",
"eslint": "^8.52.0",
"express": "^4.18.2",
"inquirer": "^8.2.6",
"jest": "^29.7.0",
"jest-fetch-mock": "^3.0.3"
},
"eslintConfig": {
"root": true,
"env": {
"node": true,
"es2021": true,
"jest": true
},
"extends": [
"eslint:recommended"
],
"parserOptions": {
"ecmaVersion": "latest"
},
"rules": {}
},
"repository": {
"type": "git",
"url": "https://github.com/Paybyway/visma-pay-node-lib"
}
}