-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
65 lines (65 loc) · 1.77 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
{
"name": "textlint-rule-no-start-duplicated-conjunction",
"repository": {
"type": "git",
"url": "https://github.com/textlint-rule/textlint-rule-no-start-duplicated-conjunction.git"
},
"author": "azu",
"email": "[email protected]",
"homepage": "https://github.com/textlint-rule/textlint-rule-no-start-duplicated-conjunction",
"license": "MIT",
"bugs": {
"url": "https://github.com/textlint-rule/textlint-rule-no-start-duplicated-conjunction/issues"
},
"version": "2.0.2",
"description": "textlint rule that check no start with duplicated conjunction.",
"main": "lib/no-start-duplicated-conjunction.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}\"",
"precommit": "lint-staged",
"postcommit": "git reset"
},
"keywords": [
"textlint"
],
"devDependencies": {
"babel-cli": "^6.10.1",
"babel-preset-es2015": "^6.9.0",
"babel-preset-jsdoc-to-assert": "^4.0.0",
"babel-preset-power-assert": "^1.0.0",
"babel-register": "^6.9.0",
"husky": "^0.14.3",
"lint-staged": "^6.0.0",
"mocha": "^4.0.1",
"power-assert": "^1.4.1",
"prettier": "^1.9.2",
"textlint": "^10.0.1",
"textlint-tester": "^4.0.1"
},
"dependencies": {
"object-assign": "^4.0.1",
"sentence-splitter": "^3.0.6",
"textlint-rule-helper": "^2.0.0"
},
"prettier": {
"printWidth": 120,
"tabWidth": 4
},
"lint-staged": {
"*.{js,jsx,ts,tsx,css}": [
"prettier --write",
"git add"
]
}
}