UNPKG

wikibase-edit

Version:
69 lines (68 loc) 1.81 kB
{ "name": "wikibase-edit", "version": "7.2.3", "description": "Edit Wikibase from NodeJS", "type": "module", "main": "lib/index.js", "files": [ "assets", "lib" ], "scripts": { "git-pre-commit": "./scripts/githooks/pre-commit", "lint": "eslint -c .eslintrc.cjs lib tests", "lint:fix": "eslint -c .eslintrc.cjs --fix lib tests", "test": "npm run test:unit && npm run test:integration", "test:unit": "mocha $MOCHA_OPTIONS tests/unit/*.js tests/unit/*/*.js", "test:integration": "mocha $MOCHA_OPTIONS tests/integration/*.js tests/integration/*/*.js", "prepublishOnly": "npm run lint && npm test", "postpublish": "git push --tags", "postversion": "./scripts/postversion", "update-toc": "./scripts/update_toc" }, "repository": { "type": "git", "url": "git+https://github.com/maxlath/wikibase-edit.git" }, "keywords": [ "wikibase", "wikidata", "write", "update", "edit", "API" ], "author": "maxlath", "license": "MIT", "bugs": { "url": "https://github.com/maxlath/wikibase-edit/issues" }, "homepage": "https://github.com/maxlath/wikibase-edit", "dependencies": { "crypto-js": "^4.1.1", "lodash.isequal": "^4.5.0", "oauth-1.0a": "^2.2.6", "wikibase-sdk": "^10.1.0" }, "devDependencies": { "@vercel/git-hooks": "^1.0.0", "config": "^3.3.9", "eslint": "^8.42.0", "eslint-config-standard": "^17.1.0", "eslint-plugin-import": "^2.27.5", "eslint-plugin-n": "^16.0.0", "eslint-plugin-promise": "^6.1.1", "mocha": "^10.2.0", "nock": "^13.3.1", "should": "^13.2.3", "tiny-chalk": "^3.0.2" }, "engines": { "node": ">= 18" }, "imports": { "#lib/*": "./lib/*.js", "#tests/*": "./tests/*.js", "#root": "./lib/index.js" } }