-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.85 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
{
"name": "wikijs",
"description": "Mediawiki interface for Node and Web",
"author": "Richard van der Dys",
"version": "6.3.3",
"keywords": [
"wiki",
"wikipedia",
"interface",
"search",
"page",
"article",
"node",
"api",
"mediawiki"
],
"license": "MIT",
"engines": {
"node": ">=0.10.4"
},
"main": "./dist/wiki.js",
"funding": {
"type": "individual",
"url": "https://www.buymeacoffee.com/2tmRKi9"
},
"dependencies": {
"cross-fetch": "^3.0.2",
"hyntax": "^1.1.9",
"infobox-parser": "3.6.2"
},
"devDependencies": {
"@pollyjs/adapter-node-http": "^2.5.0",
"@pollyjs/core": "^2.5.0",
"@pollyjs/persister-fs": "^2.1.0",
"babel": "^6.23.0",
"babel-cli": "^6.24.0",
"babel-preset-babili": "0.0.12",
"babel-preset-latest": "^6.24.0",
"babel-register": "^6.24.0",
"coveralls": "^2.11.9",
"eslint": "^4.19.1",
"gh-pages": "^1.0.0",
"istanbul": "^1.0.0-alpha.2",
"jsdoc": "^3.3.0-beta3",
"minami": "^1.1.0",
"mocha": "^2.5.3",
"nock": "^10.0.2",
"prettier": "1.15.3",
"should": "^9.0.0"
},
"typings": "./index.d.ts",
"scripts": {
"build": "babel src --out-dir dist --source-maps true",
"test": "node_modules/.bin/_mocha --no-colors --compilers js:babel-register",
"cover": "babel-node ./node_modules/istanbul/lib/cli cover node_modules/.bin/_mocha",
"docs": "node_modules/.bin/jsdoc --configure .jsdoc.json --verbose",
"lint": "eslint src",
"publish-docs": "PACKAGE_VERSION=$(cat package.json | grep version | head -1 | awk -F: '{ print $2 }' | sed 's/[\",]//g' | tr -d '[[:space:]]') && gh-pages -d docs/wikijs/$PACKAGE_VERSION ",
"coveralls": "cat ./coverage/lcov.info | coveralls"
},
"homepage": "https://github.com/dijs/wiki",
"bugs": "https://github.com/dijs/wiki/issues",
"repository": {
"type": "git",
"url": "git://github.com/dijs/wiki.git"
},
"publishConfig": {
"access": "public"
}
}