-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.17 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.17 KB
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
{
"name": "mwparser",
"version": "1.3.3",
"description": "Parse and manipulate MediaWiki's wikicode.",
"main": "dist/main.js",
"files": [
"dist/**",
"grammars/**"
],
"scripts": {
"build": "tsc",
"lint": "eslint src/ --ext .js,.ts",
"lint:fix": "eslint src/ --fix --ext .js,.ts",
"prepublishOnly": "tsc --declaration",
"update:minor": "npm version minor -m \"chore: set version to %s\"",
"update:patch": "npm version patch -m \"chore: set version to %s\""
},
"keywords": [],
"author": "bitomic",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/bitomic/mwparser.git"
},
"homepage": "https://github.com/bitomic/mwparser#readme",
"devDependencies": {
"@bitomic/eslint-config": "^1.3.0",
"@types/mocha": "10.0.10",
"@types/node": "24.10.8",
"@types/node-fetch": "2.6.13",
"@typescript-eslint/eslint-plugin": "8.53.0",
"@typescript-eslint/parser": "8.53.0",
"eslint": "8.57.1",
"mocha": "11.7.5",
"node-fetch": "2.7.0",
"typescript": "5.4.5"
},
"dependencies": {
"peggy": "^2.0.1"
},
"packageManager": "yarn@3.8.7"
}