node-ebics-client/package.json

83 lines
1.7 KiB
JSON
Raw Normal View History

2018-05-17 15:03:59 +00:00
{
2018-06-01 13:16:43 +00:00
"name": "ebics-client",
2021-03-30 11:51:20 +00:00
"version": "0.2.1",
2018-06-01 13:16:43 +00:00
"description": "Node.js ISO 20022 Compliant EBICS Client",
"main": "index.js",
2019-11-07 09:42:37 +00:00
"files": [
"lib/**/*",
"templates/**/*"
],
2018-06-01 13:16:43 +00:00
"scripts": {
2019-11-05 03:49:07 +00:00
"lint": "eslint .",
2019-11-07 09:35:11 +00:00
"test": "nyc mocha test/**/*.js",
2019-11-20 17:37:32 +00:00
"coverage": "nyc report --reporter=text-lcov | coveralls",
2019-11-07 09:42:37 +00:00
"version": "auto-changelog -p -t changelog-template.hbs && git add CHANGELOG.md"
2018-06-01 13:16:43 +00:00
},
"repository": {
"type": "git",
2019-12-16 12:28:35 +00:00
"url": "https://github.com/node-ebics/node-ebics-client"
2018-06-01 13:16:43 +00:00
},
"keywords": [
"EBICS",
"ISO20022",
"nodejs",
2019-11-07 08:58:38 +00:00
"api",
"banking"
2018-06-01 13:16:43 +00:00
],
"author": "eCollect Sofia Tech Team",
2019-06-28 14:12:49 +00:00
"contributors": [
{
"name": "Dimitar Nanov",
"url": "https://nanov.io",
"email": "dimitar@nanov.io"
},
{
"name": "Vladislav Hristov",
"url": "https://github.com/vladhristov",
2019-11-07 08:42:11 +00:00
"email": "vlad.s.ch@gmail.com"
},
2019-06-28 14:12:49 +00:00
{
"name": "Vasyl Stashuk",
"url": "https://github.com/vasyas"
2019-10-03 06:30:49 +00:00
},
{
"name": "Yago",
"url": "https://github.com/yagop"
},
{
"name": "Herman van Hazendonk",
"email": "github.com@herrie.org"
2020-03-06 04:51:37 +00:00
},
{
"name": "chrwoizi",
"url": "https://github.com/chrwoizi"
},
{
"name": "Herrie",
"url": "https://github.com/Herrie82"
2019-06-28 14:12:49 +00:00
}
],
"license": "GPL-3.0-only",
2018-06-01 13:16:43 +00:00
"dependencies": {
2021-03-30 07:36:45 +00:00
"handlebars": "^4.7.7",
2020-03-06 04:47:56 +00:00
"js2xmlparser": "^4.0.1",
2021-01-21 10:34:37 +00:00
"node-forge": "^0.10.0",
2020-03-06 04:47:56 +00:00
"request": "^2.88.2",
2021-03-30 07:36:45 +00:00
"uuid": "^8.3.2",
"xml-crypto": "^2.1.1",
"xmldom": "^0.5.0",
"xpath": "0.0.32"
2018-06-01 13:16:43 +00:00
},
"devDependencies": {
2020-05-09 10:19:56 +00:00
"auto-changelog": "^1.16.2",
2021-03-30 07:36:45 +00:00
"chai": "^4.3.4",
2020-05-09 10:19:56 +00:00
"coveralls": "^3.1.0",
2019-12-18 14:49:20 +00:00
"eslint": "^6.7.2",
2019-11-05 03:49:07 +00:00
"eslint-config-ecollect-base": "^0.1.2",
"eslint-plugin-import": "^2.18.2",
2019-11-01 06:13:53 +00:00
"libxmljs": "^0.19.7",
2020-05-09 10:19:56 +00:00
"mocha": "^7.1.2",
2021-03-30 07:36:45 +00:00
"nyc": "^15.1.0"
2018-05-17 15:03:59 +00:00
}
}