{ "name": "joodle", "version": "1.0.4", "description": "Moodle Web Service API client for Node.js.", "keywords": [ "moodle", "moodle-ws", "moodle-api" ], "homepage": "https://joodle.lukecarr.dev", "bugs": { "url": "https://github.com/lukecarr/joodle/issues" }, "license": "MIT", "contributors": [ { "name": "Luke Carr", "email": "me@lukecarr.dev" } ], "main": "dist/index.js", "types": "dist/index.d.ts", "typings": "dist/index", "files": [ "dist/" ], "repository": { "type": "git", "url": "git+https://github.com/lukecarr/joodle.git" }, "scripts": { "lint:eslint": "eslint \"src/**\" \"tests/**\"", "lint:prettier": "prettier *.md **/*.md *.json **/*.yml", "lint:check": "yarn lint:eslint && yarn lint:prettier --check", "lint:fix": "yarn lint:eslint --fix && yarn lint:prettier --write", "test:unit": "jest --passWithNoTests", "test:coverage": "codecov", "test": "yarn test:unit && yarn test:coverage", "build:clean": "rimraf dist", "build:types": "tsc --emitDeclarationOnly", "build:js": "babel src --out-dir dist --extensions \".ts,.tsx\" --source-maps inline", "build": "yarn build:clean && yarn build:types && yarn build:js", "release": "release-it", "prepublishOnly": "yarn lint:check && yarn test && yarn build" }, "devDependencies": { "@babel/cli": "^7.12.8", "@babel/core": "^7.12.9", "@babel/plugin-proposal-class-properties": "^7.12.1", "@babel/plugin-proposal-object-rest-spread": "^7.12.1", "@babel/plugin-transform-runtime": "^7.12.1", "@babel/preset-env": "^7.12.7", "@babel/preset-typescript": "^7.12.7", "@commitlint/cli": "^11.0.0", "@commitlint/config-conventional": "^11.0.0", "@commitlint/prompt": "^11.0.0", "@release-it/conventional-changelog": "^2.0.0", "@types/jest": "^26.0.18", "@types/node": "^14.14.11", "@types/qs": "^6.9.5", "@typescript-eslint/eslint-plugin": "^4.9.1", "@typescript-eslint/parser": "^4.9.1", "codecov": "^3.8.1", "eslint": "^7.15.0", "eslint-config-airbnb-base": "^14.2.1", "eslint-config-prettier": "^7.0.0", "eslint-plugin-import": "^2.22.1", "eslint-plugin-prettier": "^3.2.0", "husky": "^4.3.5", "jest": "^26.6.3", "nock": "^13.0.5", "prettier": "^2.2.1", "release-it": "^14.2.2", "rimraf": "^3.0.2", "ts-jest": "^26.4.4", "ts-node": "^9.1.1", "typescript": "^4.1.2" }, "dependencies": { "@babel/runtime": "^7.12.5", "cacheable-request": "^7.0.1", "got": "^11.8.0", "qs": "^6.9.4" } }