-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
53 lines (53 loc) · 1.21 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
{
"name": "wikipedia",
"version": "2.1.2",
"description": "A JavaScript wrapper for the wikipedia apis",
"main": "dist",
"engines": {
"node": ">=10"
},
"scripts": {
"prepublishOnly": "tsc --build --clean && tsc",
"test": "jest --coverage",
"build": "yarn lint && tsc --build --clean && tsc",
"prepare": "yarn build",
"lint": "eslint source/*.ts",
"release": "np"
},
"author": "Govind S",
"license": "MIT",
"homepage": "https://github.com/dopecodez/wikipedia#README",
"repository": {
"type": "git",
"url": "git://github.com/dopecodez/wikipedia.git"
},
"devDependencies": {
"@types/infobox-parser": "^3.3.1",
"@types/jest": "^29.2.4",
"@types/node": "^18.11.17",
"@typescript-eslint/eslint-plugin": "^5.47.0",
"@typescript-eslint/parser": "^5.47.0",
"eslint": "^8.30.0",
"eslint-plugin-tsdoc": "^0.2.17",
"jest": "^29.3.1",
"ts-jest": "^29.0.3",
"typescript": "^4.9.4"
},
"files": [
"dist"
],
"types": "dist/",
"dependencies": {
"axios": "^1.4.0",
"infobox-parser": "^3.6.2"
},
"keywords": [
"wiki",
"wikipedia",
"wikimedia",
"encyclopedia",
"jest",
"node-wiki",
"wiki-node"
]
}