-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
57 lines (55 loc) · 1.27 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
{
"name": "wikiapi",
"title": "JavaScript MediaWiki API for node.js",
"version": "1.20.0",
"description": "A simple way to access MediaWiki API via JavaScript with simple wikitext parser.",
"keywords": [
"MediaWiki",
"MediaWiki API",
"wikitext",
"ECMAScript 2017",
"wikidata",
"wdq",
"sparql"
],
"author": {
"name": "vimunci",
"email": "vimunci@gmail.com",
"url": "https://github.com/kanasimi/CeJS"
},
"contributors": [
"vimunci"
],
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/kanasimi/wikiapi/issues"
},
"homepage": "https://github.com/kanasimi/wikiapi",
"repository": {
"type": "git",
"url": "git+https://github.com/kanasimi/wikiapi.git"
},
"type": "commonjs",
"main": "Wikiapi.js",
"scripts": {
"test": "nyc node \"_test suite/test.js\"",
"report-coverage": "nyc report --reporter=text-lcov > coverage.lcov && curl -Os https://uploader.codecov.io/latest/linux/codecov && chmod +x codecov && ./codecov",
"doc": "jsdoc --template node_modules/docdash --readme README.md --destination docs Wikiapi.js"
},
"nyc": {
"exclude": [
"_test suite/*"
]
},
"engines": {
"node": ">=12.0"
},
"devDependencies": {
"jsdoc": "latest",
"docdash": "latest",
"nyc": "latest"
},
"dependencies": {
"cejs": "latest"
}
}