-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 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
56
57
58
59
60
61
62
63
64
65
66
{
"name": "textlint-plugin-ruby",
"description": "Ruby plugin for textlint",
"version": "3.0.3",
"main": "lib/index.js",
"repository": "https://github.com/kufu/textlint-plugin-ruby.git",
"author": "SmartHR textlint Team",
"license": "MIT",
"types": "lib/index.d.ts",
"bugs": {
"url": "https://github.com/kufu/textlint-plugin-ruby/issues"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix"
]
},
"keywords": [
"textlint",
"textlintplugin",
"ruby"
],
"files": [
"lib",
"src"
],
"scripts": {
"build": "tsc",
"lint": "eslint src/**/*.ts test/**/*.ts",
"test": "mocha \"test/**/*.{js,ts}\"",
"ts-test": "tsc --noEmit",
"prepublishOnly": "npm run --if-present build",
"release": "standard-version",
"release:dryrun": "standard-version --dry-run"
},
"devDependencies": {
"@commitlint/cli": "^16.0.3",
"@commitlint/config-conventional": "^16.0.0",
"@textlint/ast-tester": "^12.1.0",
"@textlint/kernel": "^12.1.0",
"@textlint/types": "^12.1.0",
"@types/mocha": "^9.0.0",
"@types/node": "^16.11.10",
"@types/tmp": "^0.2.2",
"assert": "^2.0.0",
"eslint": "^8.7.0",
"eslint-config-smarthr": "^6.0.3",
"husky": "^7.0.4",
"lint-staged": "^12.2.1",
"mocha": "^9.1.3",
"prettier": "^2.5.1",
"prettier-config-smarthr": "^1.0.0",
"standard-version": "^9.3.2",
"textlint-rule-no-todo": "^2.0.1",
"ts-node": "^10.4.0",
"ts-node-test-register": "^10.0.0",
"typescript": "^4.5.2"
},
"dependencies": {
"@textlint/ast-node-types": "^12.1.0",
"tmp": "^0.2.1"
},
"directories": {
"test": "test"
}
}