-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.41 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
{
"name": "@ukwhatn/wikidot",
"version": "1.0.10",
"description": "Library for requesting data to Wikidot",
"homepage": "https://github.com/ukwhatn/wikidot-ts",
"bugs": {
"url": "https://github.com/ukwhatn/wikidot-ts/issues",
"email": "[email protected]"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"keywords": [
"wikidot"
],
"author": {
"name": "ukwhatn",
"email": "[email protected]",
"url": "https://github.com/ukwhatn"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ukwhatn/wikidot-ts.git"
},
"dependencies": {
"async-mutex": "^0.5.0",
"axios": "^1.6.8",
"cheerio": "^1.0.0-rc.12",
"winston": "^3.13.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^7.7.0",
"@typescript-eslint/parser": "^7.7.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"husky": "^8.0.0",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 0",
"build": "rm -rf dist && tsc",
"prepublishOnly": "npm run lint && npm rum fix && npm run build",
"postpublish": "make post-release version=$npm_package_version",
"lint": "make lint",
"fix": "make prettier"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}