node-idin
Version:
NodeJS Library for iDIN (https://www.idin.nl/)
116 lines (115 loc) • 2.88 kB
JSON
{
"name": "node-idin",
"version": "2.1.2",
"description": "NodeJS Library for iDIN (https://www.idin.nl/)",
"main": "dist/index.js",
"engines": {
"node": ">=10"
},
"scripts": {
"commit": "git-cz",
"debug": "npm run build && node --inspect-brk dist/examples/index.js",
"build": "rimraf dist && tsc -d -p .",
"prepublishOnly": "rimraf dist && tsc -d -p .",
"pretest": "rimraf dist && tsc -p .",
"test": "cross-env NODE_ENV=test jest --coverage",
"test:ci": "npm run pretest && NODE_ENV=test jest --coverage && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"test:watch": "cross-env NODE_ENV=test jest --coverage --watchAll",
"lint": "tslint -p .",
"example": "ts-node examples/index.ts",
"lint:fix": "tslint --fix -p .",
"validate": "npm ls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bloqhouse/node-idin"
},
"keywords": [
"idin",
"node-idin",
"kyc",
"idin kyc"
],
"contributors": [
{
"name": "Jesús Fuentes",
"email": "jesusfght@gmail.com"
}
],
"license": "ISC",
"bugs": {
"url": "https://github.com/bloqhouse/node-idin/issues"
},
"homepage": "https://github.com/bloqhouse/node-idin#readme",
"devDependencies": {
"@types/jest": "^26.0.14",
"@types/node": "^14.11.2",
"@types/node-fetch": "^2.1.2",
"@types/uniqid": "^4.1.2",
"@types/xml2js": "^0.4.5",
"@types/xmldom": "^0.1.30",
"commitizen": "^2.9.6",
"coveralls": "^3.0.0",
"cross-env": "^5.2.0",
"cz-conventional-changelog": "^2.1.0",
"jest": "^26.4.2",
"precommit-hook": "^3.0.0",
"ts-jest": "^22.4.2",
"ts-node": "^5.0.1",
"tslint": "^5.9.1",
"typescript": "^4.0.3"
},
"dependencies": {
"await-to-js": "^2.0.1",
"key-fingerprint": "^1.1.0",
"node-fetch": "^2.2.0",
"pretty-data": "^0.40.0",
"uniqid": "^5.0.3",
"xml-crypto": "^0.10.1",
"xml-encryption": "^1.2.1",
"xml-js": "^1.6.2",
"xmldom": "^0.3.0"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"pre-commit": [
"lint"
],
"jest": {
"automock": false,
"transformIgnorePatterns": [
"/node_modules/",
"/app/",
"<rootDir>/dist/"
],
"transform": {
".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testPathIgnorePatterns": [
"/coverage/",
"/dist/",
"/node_modules/",
"/app/",
"index.ts"
],
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json"
],
"testEnvironment": "node",
"coverageThreshold": {
"global": {
"statements": 100,
"branches": 100,
"functions": 100,
"lines": 100
}
}
}
}