-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 913 Bytes
/
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
{
"name": "textlint-auto-fixer",
"main": "./lib/textlint-auto-fixer",
"version": "0.2.0",
"description": "Fix textlint errors",
"keywords": [
"textlint"
],
"repository": "https://github.com/uraway/textlint-auto-fixer",
"author": {
"name": "Masato Urai",
"url": "http://uraway.hatenablog.com/"
},
"license": "MIT",
"engines": {
"atom": ">=1.0.0 <2.0.0"
},
"dependencies": {
"temp": "^0.8.3"
},
"scripts": {
"test": "apm test",
"lint": "eslint lib && eslint spec"
},
"devDependencies": {
"eslint": "4.19.1",
"eslint-config-airbnb-base": "13.0.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-prettier": "^2.6.2",
"jasmine-fix": "^1.3.1",
"prettier": "^1.13.7",
"textlint": "^10.2.1",
"textlint-rule-common-misspellings": "^1.0.1"
}
}