-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.11 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
{
"name": "m3api-botpassword",
"version": "0.2.1",
"description": "m3api extension package to authenticate using a bot password.",
"main": "index.js",
"type": "module",
"scripts": {
"test": "npm-run-all test:*",
"test:lint": "eslint .",
"test:unit": "mocha test/unit/",
"test:integration": "mocha test/integration/",
"doc": "jsdoc -c jsdoc/conf.json"
},
"homepage": "https://github.com/lucaswerkmeister/m3api-botpassword#readme",
"bugs": "https://github.com/lucaswerkmeister/m3api-botpassword/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/lucaswerkmeister/m3api-botpassword.git"
},
"keywords": [
"mediawiki"
],
"author": "Lucas Werkmeister <[email protected]>",
"license": "ISC",
"engines": {
"node": ">=18.2.0"
},
"peerDependencies": {
"m3api": "^0.8.1"
},
"devDependencies": {
"chai": "^4.3.10",
"chai-as-promised": "^7.1.1",
"eslint": "^8.53.0",
"eslint-config-wikimedia": "^0.25.1",
"eslint-plugin-chai-friendly": "^0.7.2",
"jsdoc": "^4.0.2",
"m3api": "^0.8.1",
"mocha": "^10.2.0",
"npm-run-all": "^4.1.5"
},
"mocha": {
"recursive": true
}
}