-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
55 lines (55 loc) · 1.64 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": "textlint-plugin-org",
"version": "0.3.5",
"description": "Textlint plugin for Org mode",
"repository": {
"type": "git",
"url": "git@github.com:kijimaD/textlint-plugin-org.git"
},
"author": "Kijima Daigo",
"license": "GPLv3",
"bugs": {
"url": "https://github.com/kijimaD/textlint-plugin-org/issues"
},
"homepage": "https://github.com/kijimaD/textlint-plugin-org#readme",
"main": "lib/index.js",
"files": [
"lib",
"src"
],
"directories": {
"test": "test"
},
"scripts": {
"build": "tsc -b && tsc -b tsconfig.json",
"prepublish": "npm run --if-present build",
"test": "mocha \"test/**/*.{js,ts}\"",
"watch": "tsc -b --watch",
"lint": "npx eslint src/**/*.ts"
},
"dependencies": {
"@textlint/ast-node-types": "^12.2.2",
"@types/date-fns": "^2.6.0",
"@types/node": "^20.2.3",
"orga": "2.4.9",
"structured-source": "^4.0.0",
"traverse": "^0.6.6"
},
"devDependencies": {
"@textlint/ast-tester": "^14.0.3",
"@textlint/kernel": "^14.0.3",
"@types/jest": "^29.0.0",
"@types/power-assert": "^1.5.3",
"@types/traverse": "^0.6.32",
"@typescript-eslint/eslint-plugin": "^5.2.0",
"@typescript-eslint/parser": "^5.2.0",
"eslint": "^8.1.0",
"eslint-plugin-import": "^2.23.4",
"mocha": "^10.0.0",
"power-assert": "^1.6.1",
"textlint-rule-max-comma": "^4.0.0",
"ts-node": "^10.0.0",
"ts-node-test-register": "^10.0.0",
"typescript": "^5.0.2"
}
}