-
Notifications
You must be signed in to change notification settings - Fork 55
/
Copy pathpackage.json
56 lines (56 loc) · 1.31 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
{
"name": "nodemw",
"version": "0.22.0",
"author": "macbre <[email protected]> (http://macbre.net)",
"description": "MediaWiki API and WikiData client written in Node.js",
"main": "./lib/bot.js",
"types": "./lib/bot.d.ts",
"repository": {
"type": "git",
"url": "git://github.com/macbre/nodemw.git"
},
"keywords": [
"mediawiki",
"wiki",
"api",
"nodejs",
"wikia",
"fandom",
"wikipedia",
"wikidata"
],
"license": "BSD",
"engines": {
"node": ">=18.0"
},
"dependencies": {
"ansicolors": "0.3.x",
"async": "^3.2.0",
"diff": "^7.0.0",
"node-version-compare": "^1.0.1",
"request": "npm:postman-request@^2.88.1-postman.33",
"underscore": "^1.9.1",
"winston": "^3.3.3"
},
"devDependencies": {
"@eslint/js": "^9.1.1",
"@jest/globals": "^29.0.0",
"check-dts": "^0.8.0",
"csv-string": "^4.0.1",
"depcheck": "^1.4.7",
"eslint": "^9.1.1",
"eslint-config-prettier": "^9.0.0",
"globals": "^15.0.0",
"jest": "^29.0.0",
"prettier": "^3.0.0",
"typescript": "^5.0.2"
},
"scripts": {
"test": "jest",
"lint": "eslint --cache .",
"lint:fix": "eslint --fix .",
"check-dts": "npx check-dts lib/*.d.ts",
"prettier": "npx prettier --write .",
"check-dependencies": "npx depcheck"
}
}