f5-conx-core
Version:
F5 SDK for JavaScript with Typescript type definitions
77 lines (76 loc) • 2.01 kB
JSON
{
"name": "f5-conx-core",
"author": "F5 Networks",
"version": "1.1.0",
"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",
"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": "^6.18.1",
"@typescript-eslint/parser": "^6.18.1",
"assert": "^2.1.0",
"eslint": "^8.56.0",
"mocha": "^10.2.0",
"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
}
}