froze, until KED fix the service
.gitignore
0 → 100644
package.json
0 → 100644
{ | ||
"name": "@digigov-oss/afm-to-data-client", | ||
"version": "1.0.3", | ||
"type": "module", | ||
"description": "Client for afm2data service of GSIS", | ||
"engines": { | ||
"node": ">=16.13.1" | ||
}, | ||
"author": "Panagiotis Skarvelis <pskarvelis@admin.grnet.gr>", | ||
"dependencies": { | ||
"@digigov-oss/gsis-audit-record-db": "^1.0.2", | ||
"soap": "^0.43.0" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://gitlab.grnet.gr/digigov-oss/afm2dataClient.git" | ||
}, | ||
"main": "dist/cjs/index.js", | ||
"module": "dist/esm/index.js", | ||
"exports": { | ||
".": { | ||
"import": "./dist/esm/index.js", | ||
"require": "./dist/cjs/index.js" | ||
} | ||
}, | ||
"directories": { | ||
"src": "src", | ||
"test": "test" | ||
}, | ||
"scripts": { | ||
"test": "node --experimental-specifier-resolution=node --experimental-modules --no-warnings --loader ts-node/esm ./test/test.ts", | ||
"testesm": "node --experimental-json-modules --no-warnings ./test/test.mjs", | ||
"testcjs": "node ./test/test.cjs", | ||
"build": "rm -fr dist/* && tsc -p tsconfig.json && tsc -p tsconfig.commonjs.json && ./setType.sh" | ||
}, | ||
"eslintConfig": { | ||
"parser": "@typescript-eslint/parser", | ||
"plugins": [ | ||
"@typescript-eslint" | ||
], | ||
"extends": [ | ||
"eslint:recommended", | ||
"plugin:@typescript-eslint/recommended", | ||
"plugin:@typescript-eslint/recommended-requiring-type-checking" | ||
], | ||
"parserOptions": { | ||
"project": "./tsconfig.json" | ||
}, | ||
"rules": { | ||
"max-len": [ | ||
"error", | ||
{ | ||
"code": 100 | ||
} | ||
], | ||
"no-console": 1, | ||
"no-extra-boolean-cast": 0, | ||
"@typescript-eslint/restrict-plus-operands": 0, | ||
"@typescript-eslint/explicit-module-boundary-types": 0, | ||
"@typescript-eslint/no-explicit-any": 0, | ||
"@typescript-eslint/no-floating-promises": 0, | ||
"@typescript-eslint/no-unsafe-member-access": 0, | ||
"@typescript-eslint/no-unsafe-assignment": 0 | ||
} | ||
}, | ||
"eslintIgnore": [], | ||
"keywords": [ | ||
"gsis", | ||
"emep", | ||
"getNncIdentity" | ||
], | ||
"licenses": [ | ||
{ | ||
"type": "MIT", | ||
"url": "http://en.wikipedia.org/wiki/MIT_License" | ||
} | ||
], | ||
"devDependencies": { | ||
"@types/node": "^16.9.0", | ||
"ts-node": "^10.4.0", | ||
"tsconfig-paths": "^3.12.0", | ||
"typescript": "^4.5.4", | ||
"flatted": "^3.2.4" | ||
}, | ||
"bugs": { | ||
"url": "https://gitlab.grnet.gr/digigov-oss/afm2dataClient/-/issues" | ||
}, | ||
"homepage": "https://gitlab.grnet.gr/digigov-oss/afm2dataClient/-/blob/main/README.md" | ||
} |
setType.sh
0 → 100755
src/afm2dataService.wsdl
0 → 100644
src/config.json
0 → 100644
src/index.ts
0 → 100644
src/soapClient.ts
0 → 100644
test/.gitignore
0 → 100644
test/config.json.template
0 → 100644
test/test.ts
0 → 100644
tsconfig.base.json
0 → 100644
tsconfig.commonjs.json
0 → 100644
tsconfig.json
0 → 100644
yarn.lock
0 → 100644