node-ebics-client/package.json

75 lines
1.5 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",
2019-11-26 16:23:52 +00:00
"version": "0.1.3",
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"
2019-06-28 14:12:49 +00:00
}
],
"license": "GPL-3.0-only",
2018-06-01 13:16:43 +00:00
"dependencies": {
2019-11-07 09:20:34 +00:00
"auto-changelog": "^1.16.2",
2019-11-20 17:40:23 +00:00
"handlebars": "^4.5.3",
2019-10-14 11:19:11 +00:00
"js2xmlparser": "^4.0.0",
2019-10-31 16:57:42 +00:00
"node-forge": "^0.9.1",
2019-10-14 11:19:11 +00:00
"request": "^2.88.0",
"uuid": "^3.3.3",
"xml-crypto": "^1.4.0",
2018-06-01 13:16:43 +00:00
"xmldom": "^0.1.27",
2018-06-04 12:30:33 +00:00
"xpath": "0.0.27"
2018-06-01 13:16:43 +00:00
},
"devDependencies": {
2019-06-26 21:10:53 +00:00
"chai": "^4.2.0",
2019-11-20 17:40:23 +00:00
"coveralls": "^3.0.7",
2019-11-05 03:49:07 +00:00
"eslint": "^6.6.0",
"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",
2019-11-07 08:35:31 +00:00
"mocha": "^6.2.2",
"nyc": "^14.1.1"
2018-05-17 15:03:59 +00:00
}
}