-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
44 lines (44 loc) · 1.14 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
{
"name": "textlint-rule-helper",
"version": "2.3.1",
"description": "A helper library for textlint rule.",
"homepage": "https://github.com/textlint/textlint-rule-helper/",
"bugs": {
"url": "https://github.com/textlint/textlint-rule-helper/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/textlint/textlint-rule-helper.git"
},
"license": "MIT",
"author": "azu",
"files": [
"lib",
"src"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc -p .",
"prepublish": "npm run --if-present build",
"test": "mocha \"test/**/*.ts\"",
"watch": "tsc -p . --watch"
},
"dependencies": {
"@textlint/ast-node-types": "^13.4.1",
"structured-source": "^4.0.0",
"unist-util-visit": "^2.0.3"
},
"devDependencies": {
"@textlint/kernel": "^13.4.1",
"@textlint/textlint-plugin-markdown": "^13.4.1",
"@textlint/types": "^13.4.1",
"@types/mocha": "^10.0.6",
"@types/node": "^20.10.0",
"markdown-to-ast": "^6.0.3",
"mocha": "^10.2.0",
"ts-node": "^10.9.1",
"ts-node-test-register": "^10.0.0",
"typescript": "^5.3.2"
}
}