-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 1.04 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
{
"name": "defaultsortbot",
"version": "1.0.0",
"description": "add DEFAULTSORT automatically to mediawiki articles.",
"main": "main.js",
"scripts": {
"test": "npm run lint && npm run mocha",
"lint": "eslint *.js",
"mocha": "NODE_ENV=test mocha --require intelli-espower-loader",
"istanbul": "NODE_ENV=test istanbul cover _mocha",
"coveralls": "npm run istanbul && node ./node_modules/coveralls/bin/coveralls.js < ./coverage/lcov.info"
},
"repository": {
"type": "git",
"url": "https://github.com/kn1cht/defaultSortBot.git"
},
"author": "kn1cht",
"license": "MIT",
"dependencies": {
"config": "^3.0.0",
"japanese": "^1.2.0",
"js-yaml": "^3.13.1",
"kuromojin": "^2.0.0",
"node-cron": "^2.0.3",
"nodemw": "^0.13.0",
"unorm": "^1.4.1"
},
"devDependencies": {
"coveralls": "^3.0.12",
"eslint": "^6.2.1",
"intelli-espower-loader": "^1.0.1",
"istanbul": "^1.1.0-alpha.1",
"mocha": "^10.2.0",
"nock": "^12.0.0",
"power-assert": "^1.4.4",
"rewire": "^5.0.0"
}
}