-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.42 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
{
"name": "m3api",
"version": "0.8.4",
"description": "Minimal modern MediaWiki API wrapper.",
"main": "node.js",
"type": "module",
"scripts": {
"test": "npm-run-all test:*",
"test-quick": "npm-run-all test:lint test:unit",
"test:lint": "eslint --max-warnings=0 .",
"test:unit": "mocha test/unit/",
"test:node": "mocha test/integration/node.test.js",
"test:browser": "mocha test/integration/browser.test.js # #23",
"test:readme": "sed -n '/```/,/```/ { /```$/q; /```/n; p; }' README.md | node --input-type=module",
"doc": "jsdoc -c jsdoc/conf.json"
},
"homepage": "https://github.com/lucaswerkmeister/m3api#readme",
"bugs": "https://github.com/lucaswerkmeister/m3api/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/lucaswerkmeister/m3api.git"
},
"keywords": [
"mediawiki"
],
"author": "Lucas Werkmeister <mail@lucaswerkmeister.de>",
"license": "ISC",
"engines": {
"node": ">=18.2.0"
},
"dependencies": {
"http-cookie-agent": "^6.0.8",
"tough-cookie": "^5.0.0",
"undici": "^6.12.0"
},
"devDependencies": {
"@sinonjs/fake-timers": "^14.0.0",
"chai": "^5.1.0",
"chai-as-promised": "^8.0.0",
"eslint": "^8.57.0",
"eslint-config-wikimedia": "^0.28.2",
"eslint-plugin-chai-friendly": "^1.0.1",
"eslint-plugin-compat": "^4.2.0",
"jsdoc": "^4.0.2",
"mocha": "^11.0.1",
"npm-run-all": "^4.1.5"
},
"overrides": {
"chai": "^5.1.0"
},
"mocha": {
"recursive": true
}
}