forked from siddharthvp/mwn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 2.89 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "mwn",
"version": "1.11.4",
"description": "JavaScript & TypeScript MediaWiki bot framework for Node.js",
"main": "./build/bot.js",
"types": "./build/bot.d.ts",
"scripts": {
"bump": "node scripts/bump-version.js",
"format": "prettier --write .",
"build": "tsc || echo",
"quickbuild": "babel src --extensions \".ts\" --out-dir build",
"lint": "eslint src tests && markdownlint-cli2",
"lint:fix": "eslint --fix src tests && markdownlint-cli2-fix",
"test:testwiki": "cd tests && mocha bot.test.js category.test.js file.test.js login.bot.test.js oauth.test.js page.test.js suppl.bot.test.js user.test.js wikitext.test.js",
"setuplocalwiki": "cd tests/docker && bash main.sh",
"test:localwiki": "cd tests && mocha edit.bot.test.js user.edit.test.js errors.test.js shutoff.test.js core.test.js",
"test:nowiki": "cd tests && mocha batchOperations.bot.test.js date.test.js log.test.js static_utils.test.js title.test.js",
"test": "nyc --reporter=lcov --reporter=text mocha tests/",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"test:ts": "ts-mocha -p tsconfig.json tests/ts/*",
"docs": "cd website && npm start",
"docs:api": "node scripts/generate-docs.js"
},
"engines": {
"node": ">=10"
},
"repository": "git+https://github.com/siddharthvp/mwn.git",
"keywords": [
"mediawiki-client",
"mediawiki-bot",
"nodejs-bot",
"mediawiki-api-wrapper"
],
"author": "Siddharth VP",
"license": "LGPL-3.0-or-later",
"bugs": {
"url": "https://github.com/siddharthvp/mwn/issues"
},
"homepage": "https://github.com/siddharthvp/mwn#readme",
"dependencies": {
"@types/eventsource": "^1.1.4",
"@types/node": "^14.14.25",
"@types/tough-cookie": "^4.0.0",
"axios": "^0.21.1",
"axios-cookiejar-support": "^1.0.1",
"chalk": "^1.1.3",
"eventsource": "^1.0.7",
"form-data": "^3.0.0",
"oauth-1.0a": "^2.2.6",
"prettyjson": "^1.1.3",
"tough-cookie": "^4.0.0",
"types-mediawiki": "^1.0.0"
},
"devDependencies": {
"@types/chai": "^4.2.14",
"@types/chai-as-promised": "^7.1.3",
"@types/mocha": "^8.2.0",
"@types/sinon": "^9.0.10",
"@types/sinon-chai": "^3.2.5",
"@typescript-eslint/eslint-plugin": "^4.14.2",
"@typescript-eslint/parser": "^4.14.2",
"chai": "^4.3.0",
"chai-as-promised": "^7.1.1",
"coveralls": "^3.1.0",
"eslint": "^7.19.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-chai-expect": "^2.2.0",
"husky": "^4.3.8",
"lint-staged": "^11.0.0",
"markdownlint-cli2": "^0.3.0",
"mocha": "^8.2.1",
"mocha-chai-jest-snapshot": "^1.1.2",
"nock": "^13.1.0",
"nyc": "^15.1.0",
"prettier": "^2.2.1",
"sinon": "^9.2.4",
"sinon-chai": "^3.5.0",
"ts-mocha": "^8.0.0",
"typedoc": "^0.20.36",
"typescript": "^4.1.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.ts,tests/**/*.js": "eslint --fix",
"*.{ts,js,json,yml}": "prettier --write",
"*.md": "markdownlint-cli2-fix"
}
}