-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
52 lines (52 loc) · 1.27 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
{
"private": true,
"author": "azu",
"license": "MIT",
"name": "textlint-rule-preset-google",
"version": "1.0.0",
"description": "Google Developer Documentation Style Guide.",
"workspaces": {
"packages": [
"packages/*"
]
},
"scripts": {
"bootstrap": "lerna bootstrap && yarn run build",
"publish": "lerna publish",
"test": "lerna run test",
"build": "lerna run build",
"prettier": "prettier --write '**/*.{js,jsx,ts,tsx,css}'",
"precommit": "lint-staged",
"postcommit": "git reset"
},
"keywords": [
"textlintrule"
],
"repository": {
"type": "git",
"url": "https://github.com/textlint-rule/textlint-rule-preset-google-developer.git"
},
"bugs": {
"url": "https://github.com/textlint-rule/textlint-rule-preset-google-developer/issues"
},
"homepage": "https://github.com/textlint-rule/textlint-rule-preset-google-developer",
"devDependencies": {
"babel-preset-env": "^1.6.1",
"husky": "^0.14.3",
"lerna": "^2.5.1",
"lint-staged": "^7.2.0",
"mocha": "^5.2.0",
"prettier": "^1.8.1",
"textlint-scripts": "^2.0.0"
},
"prettier": {
"printWidth": 120,
"tabWidth": 4
},
"lint-staged": {
"*.{js,jsx,ts,tsx,css}": [
"prettier --write",
"git add"
]
}
}