forked from textlint-rule/textlint-rule-prh
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.69 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
{
"name": "textlint-rule-prh",
"repository": {
"type": "git",
"url": "git+https://github.com/textlint-rule/textlint-rule-prh.git"
},
"author": "azu",
"email": "azuciao@gmail.com",
"homepage": "https://github.com/textlint-rule/textlint-rule-prh",
"license": "MIT",
"bugs": {
"url": "https://github.com/textlint-rule/textlint-rule-prh/issues"
},
"version": "5.2.0",
"description": "textlint rule for prh.",
"main": "lib/textlint-rule-prh.js",
"files": [
"lib",
"src"
],
"directories": {
"test": "test"
},
"scripts": {
"build": "NODE_ENV=production babel src --out-dir lib --source-maps",
"watch": "babel src --out-dir lib --watch --source-maps",
"prepublish": "npm run --if-present build",
"test": "mocha",
"prettier": "prettier --write '**/*.{js,jsx,ts,tsx,css}'"
},
"keywords": [
"textlint",
"prh"
],
"dependencies": {
"prh": "^5.4.3",
"textlint-rule-helper": "^2.1.1",
"untildify": "^3.0.3"
},
"devDependencies": {
"babel-cli": "6.26.0",
"babel-preset-es2015": "6.24.1",
"babel-preset-jsdoc-to-assert": "4.0.0",
"babel-preset-power-assert": "2.0.0",
"babel-register": "6.26.0",
"husky": "1.3.1",
"lint-staged": "8.1.0",
"mocha": "5.2.0",
"power-assert": "1.6.1",
"prettier": "1.15.3",
"textlint": "11.2.1",
"textlint-tester": "5.1.2"
},
"peerDependencies": {
"textlint": ">= 5.5.0"
},
"prettier": {
"printWidth": 120,
"tabWidth": 4
},
"lint-staged": {
"*.{js,jsx,ts,tsx,css}": [
"prettier --write",
"git add"
]
},
"husky": {
"hooks": {
"post-commit": "git reset",
"pre-commit": "lint-staged"
}
}
}