-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.02 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
{
"name": "remark-lint-no-repeat-punctuation",
"version": "0.1.4",
"author": "LaySent <laysent@gmail.com>",
"bugs": {
"url": "https://github.com/laysent/remark-lint-plugins/issues"
},
"homepage": "https://github.com/laysent/remark-lint-plugins",
"description": "remark lint plugin that will warn when multiple punctuations found in series.",
"keywords": [
"remark",
"remark-lint",
"lint",
"rule"
],
"main": "index.js",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/laysent/remark-lint-plugins.git"
},
"dependencies": {
"unified-lint-rule": "^1.0.3",
"unist-util-map": "^1.0.4",
"unist-util-to-list-of-char": "^0.1.3"
},
"devDependencies": {
"eslint": "5.3.0",
"eslint-config-airbnb-base": "13.1.0",
"eslint-plugin-import": "^2.14.0",
"jest": "^24.1.0",
"remark": "^10.0.1",
"to-vfile": "^5.0.2"
},
"scripts": {
"test": "jest",
"lint": "eslint *.js",
"prepublish": "npm run lint && npm run test"
}
}