UNPKG

axios-redmine

Version:

axios-redmine is a nodejs library which supports 100% features of Redmine's REST API.

74 lines (73 loc) 2 kB
{ "name": "axios-redmine", "version": "1.0.0", "description": "axios-redmine is a nodejs library which supports 100% features of Redmine's REST API.", "main": "lib/redmine.js", "types": "index.d.ts", "files": [ "lib/", "index.d.ts", "LICENSE", "README.md", "CHANGES.md" ], "directories": { "doc": "doc", "example": "example", "test": "test" }, "scripts": { "test": "mocha test/**/*.js --timeout 6000 --check-leaks --ui bdd --reporter spec", "lint": "eslint lib/**/*.js test/**/*.js example/**/*.js", "lint:fix": "eslint --fix lib/**/*.js test/**/*.js example/**/*.js", "coverage": "c8 --reporter=lcov --reporter=text mocha test/**/*.js --timeout 6000", "serve": "npm run lint && npm run test && npm run coverage", "type-check": "tsc --noEmit", "clean": "rimraf coverage .nyc_output", "prepublishOnly": "npm run lint && npm run test" }, "keywords": [ "redmine", "redmine-api", "rest-api", "api-client", "nodejs", "axios", "typescript", "project-management", "issue-tracking" ], "repository": { "type": "git", "url": "https://github.com/lupinthe14th/axios-redmine.git" }, "bugs": { "url": "https://github.com/lupinthe14th/axios-redmine/issues" }, "homepage": "https://github.com/lupinthe14th/axios-redmine#readme", "author": "hideosuzuki@ordinarius-fectum.net", "license": "GPL-3.0", "engines": { "node": ">=20.0.0" }, "dependencies": { "axios": "^1.7.0" }, "devDependencies": { "@eslint/js": "^9.17.0", "@typescript-eslint/parser": "^8.18.2", "@typescript-eslint/typescript-estree": "^8.18.2", "axios-mock-adapter": "^2.0.0", "c8": "^10.1.3", "debug": "^4.3.7", "eslint": "^9.17.0", "mocha": "^10.8.2", "rimraf": "^6.1.2", "typescript": "^5.7.2", "typescript-eslint-language-service": "^5.0.5" }, "resolutions": { "braces": ">=3.0.3", "brace-expansion": ">=1.1.12" } }