init sceleton
.gitignore
0 → 100644
package.json
0 → 100644
{ | ||
"name": "get-nnc-identity-client", | ||
"version": "1.0.0", | ||
"type": "module", | ||
"description": "Client for getNncIdentity service of GSIS", | ||
"engines": { | ||
"node": ">=4.0.0" | ||
}, | ||
"author": "Panagiotis Skarvelis <pskarvelis@admin.grnet.gr>", | ||
"dependencies": { | ||
"soap": "^0.43.0", | ||
"gsis-audit-record-db":"git+https://gitlab.grnet.gr/digigov/auditRecordDB.git" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://gitlab.grnet.gr/digigov/emepclient.git" | ||
}, | ||
"main": "./index.ts", | ||
"types": "./lib/getNncIdentityClient.d.ts", | ||
"directories": { | ||
"lib": "lib", | ||
"test": "test" | ||
}, | ||
"scripts": { | ||
"test": "node --experimental-specifier-resolution=node --loader ts-node/esm ./src/index.ts" | ||
}, | ||
"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" | ||
], | ||
"license": "MIT", | ||
"devDependencies": { | ||
"@types/node": "^17.0.5", | ||
"ts-node": "^10.4.0", | ||
"tsconfig-paths": "^3.12.0", | ||
"typescript": "^4.5.4" | ||
}, | ||
"bugs": { | ||
"url": "https://gitlab.grnet.gr/digigov/emepclient/-/issues" | ||
}, | ||
"homepage": "https://gitlab.grnet.gr/digigov/emepclient/-/blob/main/README.md" | ||
} |
src/index.ts
0 → 100644
tsconfig.json
0 → 100644
tsconfig.prod.json
0 → 100644
Please register or sign in to comment