-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 loc) · 1.38 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
{
"name": "@textlint-rule/textlint-rule-proselint",
"version": "1.0.1",
"description": "Proselint wrapper for textlint.",
"keywords": [
"textlintrule"
],
"homepage": "https://github.com/textlint-rule/textlint-rule-proselint",
"bugs": {
"url": "https://github.com/textlint-rule/textlint-rule-proselint/issues"
},
"license": "MIT",
"author": "azu",
"files": [
"bin/",
"lib/",
"src/"
],
"main": "lib/textlint-rule-proselint.js",
"directories": {
"lib": "lib",
"test": "test"
},
"repository": {
"type": "git",
"url": "https://github.com/textlint-rule/textlint-rule-proselint.git"
},
"scripts": {
"build": "textlint-scripts build",
"precommit": "lint-staged",
"postcommit": "git reset",
"prepublish": "npm run --if-present build",
"test": "textlint-scripts test",
"prettier": "prettier --write \"**/*.{js,jsx,ts,tsx,css}\"",
"watch": "textlint-scripts build --watch"
},
"devDependencies": {
"husky": "^0.14.3",
"lint-staged": "^6.1.0",
"prettier": "^1.10.2",
"textlint-scripts": "^1.4.2"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,css}": [
"prettier --write",
"git add"
]
},
"prettier": {
"singleQuote": false,
"printWidth": 120,
"tabWidth": 4
},
"dependencies": {
"execa": "^0.9.0",
"p-limit": "^1.2.0",
"textlint-rule-helper": "^2.0.0"
}
}