-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 loc) · 2.99 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "textlint-rule-allowed-uris",
"version": "1.1.0",
"packageManager": "[email protected]",
"workspaces": [
"."
],
"description": "A textlint rule for checking allowed URIs in links and images of Markdown.🔥",
"main": "build/textlint-rule-allowed-uris.js",
"types": "build/textlint-rule-allowed-uris.d.ts",
"typesVersions": {
"*": {
"*": [
"./build/*"
]
}
},
"files": [
"build",
"LICENSE",
"README.md"
],
"keywords": [
"textlintrule",
"textlint",
"lint",
"rule",
"uri",
"url",
"checker"
],
"author": "루밀LuMir <[email protected]> (https://github.com/lumirlumir)",
"license": "MIT",
"homepage": "https://github.com/lumirlumir/npm-textlint-rule-allowed-uris",
"repository": {
"type": "github",
"url": "git+https://github.com/lumirlumir/npm-textlint-rule-allowed-uris.git"
},
"bugs": {
"url": "https://github.com/lumirlumir/npm-textlint-rule-allowed-uris/issues"
},
"publishConfig": {
"provenance": true
},
"scripts": {
"prepare": "husky",
"publish-package": "node -e \"require('child_process').execSync('npm publish ' + (require('./package.json').version.includes('-') ? '--tag next' : ''), { stdio: 'inherit' })\"",
"prepublishOnly": "npm run build",
"build": "npx babel src -d build && npx tsc",
"test": "node --test && concurrently \"npm:textlint-*\"",
"coverage": "npx c8 --reporter=lcov npm run test",
"fix": "concurrently \"npm:fix:*\"",
"fix:eslint": "npx eslint --fix",
"fix:prettier": "npx prettier . --write --ignore-unknown",
"fix:markdownlint": "npx markdownlint **/*.md --fix",
"lint": "concurrently \"npm:lint:*\"",
"lint:eslint": "npx eslint",
"lint:prettier": "npx prettier . --check --ignore-unknown",
"lint:editorconfig": "npx editorconfig-checker -config .editorconfig-checker.json",
"lint:markdownlint": "npx markdownlint **/*.md",
"lint:textlint": "npx textlint -f pretty-error **/*.md",
"textlint-pretty": "npx textlint tests/textlint-rule-allowed-uris.data.md --rulesdir ./src -f pretty-error",
"textlint-stylish": "npx textlint tests/textlint-rule-allowed-uris.data.md --rulesdir ./src -f stylish",
"textlint-json": "npx textlint tests/textlint-rule-allowed-uris.data.md --rulesdir ./src -f json"
},
"peerDependencies": {
"textlint": "^14.0.4"
},
"devDependencies": {
"@babel/cli": "^7.27.0",
"@babel/core": "^7.26.10",
"@babel/preset-env": "^7.26.9",
"@types/node": "^22.15.0",
"c8": "^10.1.3",
"concurrently": "^9.0.0",
"editorconfig-checker": "^6.0.0",
"eslint": "^9.25.1",
"eslint-config-bananass": "^0.1.0-canary.3",
"eslint-plugin-mark": "^0.1.0-canary.4",
"husky": "^9.1.4",
"lint-staged": "^15.5.1",
"markdownlint-cli": "^0.44.0",
"prettier": "^3.5.3",
"prettier-config-bananass": "^0.1.0-canary.3",
"textlint": "^14.6.0",
"textlint-tester": "^14.6.0"
},
"dependencies": {
"cheerio": "^1.0.0",
"mime-types": "^3.0.1"
}
}