-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
49 lines (49 loc) · 1.23 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
41
42
43
44
45
46
47
48
49
{
"name": "textlint-rule-no-dead-image-link",
"version": "1.0.0",
"description": "This is a textlint rule to validate image links in markdown documents",
"main": "lib/no-dead-image-link.js",
"author": "Parth Patel <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/parthpp/textlint-rule-no-dead-image-link.git"
},
"engines": {
"node": ">=6.0.0"
},
"scripts": {
"build": "babel src --out-dir lib --source-maps",
"test": "npm-run-all lint mocha",
"lint": "eslint src test",
"mocha": "mocha --require @babel/register",
"prepublish": "npm run --if-present build"
},
"dependencies": {
"@babel/runtime": "^7.4.5",
"textlint-rule-helper": "^2.1.1"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/plugin-transform-runtime": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"@babel/register": "^7.4.4",
"eslint": "^5.16.0",
"mocha": "^6.1.4",
"npm-run-all": "^4.1.5",
"textlint-tester": "^5.1.6"
},
"directories": {
"test": "test"
},
"files": [
"lib/",
"src/"
],
"keywords": [
"textlintrule",
"textlint",
"validate image link in markdown"
]
}