-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1004 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 1004 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
{
"name": "@arcxp/arcxp-ifx-node-sdk",
"version": "1.3.1",
"description": "Arc XP Node.js SDK NPM package",
"engines": {
"node": ">=18.x",
"npm": ">=8.x"
},
"main": "lambdaHandler.js",
"scripts": {
"test": "jest",
"test:watch": "jest --watchAll",
"test:coverage": "jest --coverage",
"lint": "eslint --ext .js .",
"lint:fix": "eslint --ext .js --fix ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/arcxp/arcxp-ifx-node-sdk.git"
},
"author": "",
"license": "SEE LICENSE IN LICENSE.md",
"bugs": {
"url": "https://github.com/arcxp/arcxp-ifx-node-sdk/issues"
},
"homepage": "https://github.com/arcxp/arcxp-ifx-node-sdk#readme",
"devDependencies": {
"eslint": "^8.29.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"jest": "^29.5.0",
"supertest": "^6.3.3"
},
"dependencies": {
"dotenv": "^16.0.3",
"body-parser": "^1.20.2",
"express": "^4.18.2"
}
}