-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.63 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
{
"name": "textlint-rule-allowed-uris",
"version": "1.0.6",
"description": "A textlint rule for checking allowed URIs in links and images of Markdown.🔥",
"main": "build/textlint-rule-allowed-uris.js",
"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"
},
"scripts": {
"prepare": "husky",
"publish-package": "npm publish",
"prepublishOnly": "npm run build",
"build": "npx babel src -d build",
"test": "concurrently \"npm:test:*\"",
"test:tests": "npx mocha ./tests --inline-diffs true",
"test:classes": "npx mocha ./tests/classes --inline-diffs true",
"test:utils": "npx mocha ./tests/utils --inline-diffs true",
"coverage": "npx nyc --reporter=lcov npm run test",
"lint": "concurrently \"npm:lint:*\"",
"lint:eslint": "npx eslint . --ext .js",
"lint:prettier": "npx prettier . --check",
"lint:editorconfig": "npx editorconfig-checker -config .editorconfig-checker.json",
"lint:markdownlint": "npx markdownlint **/*.md",
"fix": "concurrently \"npm:fix:*\"",
"fix:eslint": "npx eslint . --fix --ext .js",
"fix:prettier": "npx prettier . --write",
"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.24.8",
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.3",
"concurrently": "^9.0.0",
"editorconfig-checker": "^6.0.0",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"husky": "^9.1.4",
"lint-staged": "^15.2.9",
"markdownlint-cli": "^0.43.0",
"mocha": "^11.0.1",
"nyc": "^17.0.0",
"prettier": "^3.3.3",
"textlint-tester": "^14.2.0"
},
"dependencies": {
"ansi-colors": "^4.1.3",
"axios": "^1.7.4",
"cheerio": "^1.0.0",
"mime-types": "^2.1.35"
}
}