Skip to content

Commit facd904

Browse files
authored
Merge pull request #41 from nodaguti/update-dependencies
Update dependencies
2 parents aae5c41 + 0b614b7 commit facd904

File tree

6 files changed

+3060
-15
lines changed

6 files changed

+3060
-15
lines changed

.babelrc

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,12 @@
11
{
22
"presets": [
3-
"es2015"
4-
],
5-
"plugins": [
6-
"babel-plugin-espower"
3+
[
4+
"env",
5+
{
6+
"targets": {
7+
"node": 6
8+
}
9+
}
10+
]
711
]
812
}

.eslintrc

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
{
22
"root": true,
3-
"extends": "airbnb/base"
3+
"extends": "eslint-config-airbnb-base",
4+
"rules": {
5+
"arrow-parens": ["error", "always"]
6+
}
47
}

.travis.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
sudo: false
22
language: node_js
33
node_js:
4-
- 5
4+
- 6
5+
- 7
56
notification:
67
slack:
78
secure: "kgrJl00zmy/sJevvs+/ZSn2buAuLtRw++N+JbF2coWYmKPFUEtWAXP+7Y6+AcQWRqzpDxO0o6S5AeQWwZN4WGeD8M0o1CdHiRA90yNW2zJI7OT0J0qd97uyUcxG8gDtbAmyNUZN2JiSu491gswFbHVyYQsvMDzCy7WC063U10wJOMON/HoZnEAz4LgkdFLyGp7W/leXniRT0RcJ7yolG5fE5xJvCPya6NygjveKj+TcMkenPHaVmi9KmKRMlRVNHMJOaXDosdUF9hLK8SFXVjCnqDWLx45cR/N+9f9ljwzYKJiwazGnh4P0JZoLE6w1k0PVtunNouVfZJWinQ3oxxWXQx1m0l7bobaKr0yTtoI9MWhKP3jzR1kDynobJEfNM4Ao1SDRJnlNkOy06HqxsY91bhN34QQrcu1u5S2e7Fkn4FSTMZ32VHVuVody6yGpryBaTZxxXvyZS0MN4J3pXZ277KKK2/1UbRNBmdakcyJIosUVPsruVDMKXWHoG5yEtwa7D+on5A4Cu1/fQGb+9R9zUnxdSUvsT3+960yN5r37ExXJF5SAaj6yunfTe5sgHAL+N8s1xIRfhIVIiEB6a0NRid/DxvmzEamxzVzq5xKwSHK+dG4RCRaNqVHZqPwWUB1G3ldXJrVdZZ0gRTzmTVHMgSCoqpK46W2J9EWHU9jU="

package.json

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
"name": "textlint-rule-write-good",
33
"version": "1.5.0",
44
"description": "textlint rule to check your English style with write good",
5+
"engines": {
6+
"node": ">=6"
7+
},
58
"main": "lib/write-good.js",
69
"scripts": {
710
"build": "babel src -d lib --source-maps",
@@ -27,19 +30,17 @@
2730
"repository": "nodaguti/textlint-rule-write-good",
2831
"dependencies": {
2932
"textlint-rule-helper": "^2.0.0",
30-
"write-good": "^0.9.1"
33+
"write-good": "^0.10.0"
3134
},
3235
"devDependencies": {
3336
"babel-cli": "^6.10.1",
3437
"babel-core": "^6.9.1",
35-
"babel-plugin-espower": "^2.2.0",
36-
"babel-preset-es2015": "^6.9.0",
38+
"babel-preset-env": "^1.1.8",
3739
"eslint": "^3.0.0",
38-
"eslint-config-airbnb": "^9.0.1",
39-
"eslint-plugin-import": "^1.8.1",
40-
"mocha": "^2.5.3",
41-
"npm-run-all": "^2.1.2",
42-
"power-assert": "^1.4.1",
40+
"eslint-config-airbnb-base": "^11.0.1",
41+
"eslint-plugin-import": "^2.2.0",
42+
"mocha": "^3.2.0",
43+
"npm-run-all": "^4.0.1",
4344
"textlint": "^7.0.1",
4445
"textlint-tester": "^2.0.0"
4546
}

test/write-good.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import rule from '../src/write-good';
21
import TextlintTester from 'textlint-tester';
2+
import rule from '../src/write-good';
33

44
const tester = new TextlintTester();
55

0 commit comments

Comments
 (0)