winrm-client
Version:
Make WinRM service calls from NodeJS
57 lines (56 loc) • 1.55 kB
JSON
{
"name": "winrm-client",
"version": "0.0.6",
"description": "Make WinRM service calls from NodeJS",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch",
"prepublishOnly": "npm run build",
"format": "prettier --write .",
"format:check": "prettier --check .",
"outdated": "npm outdated --json || true",
"lint": "npx eslint . --ext .ts,.js",
"dev": "npm run build && npm run lint && npm run format",
"jest:test": "jest",
"jest:coverage": "npx jest --coverage",
"jest:watch": "jest --watch",
"prepare": "husky",
"test": "npm run format:check && npm run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/shide1989/nodejs-winrm.git"
},
"keywords": [
"winrm"
],
"author": "Sebastien Hideux",
"license": "MIT",
"bugs": {
"url": "https://github.com/shide1989/nodejs-winrm/issues"
},
"homepage": "https://github.com/shide1989/nodejs-winrm#readme",
"engines": {
"node": ">=16.0.0"
},
"dependencies": {
"fast-xml-parser": "^4.3.2",
"uuid": "^11.1.0"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/node": "^22.8.1",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.11.0",
"@typescript-eslint/parser": "^8.11.0",
"eslint": "^9.33.0",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.1.7",
"jest": "^30.0.5",
"prettier": "^3.3.3",
"ts-jest": "^29.4.1",
"typescript": "^5.6.3"
}
}