-
-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
68 lines (68 loc) · 1.77 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "wikibase-edit",
"version": "7.2.1",
"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"
}
}