-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
37 lines (37 loc) · 995 Bytes
/
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
{
"name": "mediawiki-title",
"version": "0.7.5",
"description": "Title normalization library for mediawiki",
"main": "lib/index.js",
"scripts": {
"test": "npm run lint && mocha",
"lint": "eslint --max-warnings 0 --ext .js --ext .json .",
"coverage": "nyc --reporter=lcov _mocha",
"coveralls": "cat ./coverage/lcov.info | coveralls"
},
"keywords": [
"mediawiki",
"normalization",
"title",
"article"
],
"author": "Wikimedia Services Team <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://phabricator.wikimedia.org/tag/services/"
},
"repository": {
"type": "git",
"url": "git://github.com/wikimedia/mediawiki-title.git"
},
"devDependencies": {
"coveralls": "^3.0.5",
"eslint-config-wikimedia": "^0.13.1",
"eslint-plugin-jsdoc": "^15.5.3",
"eslint-plugin-json": "^1.4.0",
"mocha": "^6.1.4",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^14.1.1",
"preq": "^0.5.9"
}
}