-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
39 lines (39 loc) · 958 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
{
"name": "textlint-rule-max-number-of-lines",
"repository": {
"type": "git",
"url": "git+https://github.com/azu/textlint-rule-max-number-of-lines.git"
},
"author": "azu",
"email": "[email protected]",
"homepage": "https://github.com/azu/textlint-rule-max-number-of-lines",
"license": "MIT",
"bugs": {
"url": "https://github.com/azu/textlint-rule-max-number-of-lines/issues"
},
"version": "1.0.3",
"description": "textlint rule for linting number of lines.",
"main": "lib/max-number-of-lines.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": [
"textlint"
],
"devDependencies": {
"textlint-scripts": "^1.2.2"
},
"dependencies": {
"object-assign": "^4.0.1"
}
}