f5-conx-core
Version:
F5 SDK for JavaScript with Typescript type definitions
84 lines (83 loc) • 2.21 kB
JSON
{
"name": "f5-conx-core",
"author": "F5 Networks",
"version": "1.2.2",
"description": "F5 SDK for JavaScript with Typescript type definitions",
"license": "SEE LICENSE IN LICENSE file",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"tags": [
"f5",
"sdk",
"node",
"javascript",
"typescript"
],
"keywords": [
"f5",
"sdk",
"node",
"javascript",
"typescript"
],
"repository": {
"type": "git",
"url": "git+https://github.com/f5devcentral/f5-conx-core.git"
},
"bugs": {
"url": "https://github.com/f5devcentral/f5-conx-core/issues"
},
"scripts": {
"lint": "tsc --noEmit && eslint 'src/**/*.{js,ts,tsx}' 'tests/**/*.{js,ts,tsx}'",
"watch": "tsc -watch -p ./",
"compile": "tsc -p ./",
"test": "mocha -r ts-node/register \"tests/*.tests.ts\"",
"build-package": "npm run compile && npm pack",
"prepublishOnly": "npm run lint && npm run compile && npm test",
"publish-package": "npm run compile && npm publish"
},
"dependencies": {
"axios": "^1.6.5"
},
"devDependencies": {
"@types/assert": "^1.5.10",
"@types/mocha": "^10.0.6",
"@types/node": "^20.10.8",
"@typescript-eslint/eslint-plugin": "^8.56.1",
"@typescript-eslint/parser": "^8.56.1",
"assert": "^2.1.0",
"eslint": "^8.57.1",
"mocha": "^11.7.5",
"nock": "^13.4.0",
"nyc": "^15.1.0",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"nyc": {
"check-coverage": true,
"lines": 60,
"functions": 60,
"branches": 60,
"statements": 60,
"reporter": [
"html",
"text"
],
"cache": false
},
"eslintConfig": {
"parser": "@typescript-eslint/parser",
"extends": [
"plugin:@typescript-eslint/recommended"
]
},
"mocha": {
"timeout": 40000
},
"overrides": {
"mocha": {
"serialize-javascript": "^7.0.3"
},
"diff": "^8.0.3"
}
}