-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
41 lines (41 loc) · 947 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
38
39
40
41
{
"name": "textlint-rule-no-todo",
"description": "textlint rule: warn TODO text.",
"repository": {
"type": "git",
"url": "https://github.com/textlint-rule/textlint-rule-no-todo.git"
},
"author": "azu",
"email": "azuciao@gmail.com",
"homepage": "https://github.com/textlint-rule/textlint-rule-no-todo",
"license": "MIT",
"bugs": {
"url": "https://github.com/textlint-rule/textlint-rule-no-todo/issues"
},
"version": "2.0.1",
"main": "lib/no-todo.js",
"files": [
"lib",
"src"
],
"directories": {
"test": "test"
},
"scripts": {
"build": "textlint-scripts build",
"watch": "textlint-scripts build --watch",
"prepublish": "npm run --if-present build",
"test": "textlint-scripts test"
},
"keywords": [
"textlintrule",
"todo",
"lint"
],
"devDependencies": {
"textlint-scripts": "^2.1.0"
},
"dependencies": {
"textlint-rule-helper": "^2.0.0"
}
}