forked from arantes555/check-md
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.36 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
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "check-md",
"version": "1.0.2",
"description": "Checks dead links of markdown",
"bin": {
"check-md": "./bin.js"
},
"dependencies": {
"@sindresorhus/slugify": "^0.8.0",
"chalk": "^2.4.2",
"commander": "^2.19.0",
"globby": "^9.1.0",
"yargs-parser": "^20.2.1"
},
"devDependencies": {
"autod": "^3.0.1",
"coffee": "^5.2.1",
"egg-bin": "^4.3.7",
"egg-ci": "^1.8.0",
"egg-mock": "^3.21.0",
"eslint": "^4.18.1",
"eslint-config-egg": "^7.0.0",
"js2dts": "^0.3.0"
},
"engines": {
"node": ">=8.0.0"
},
"scripts": {
"autod": "autod",
"lint": "eslint .",
"test": "npm run lint -- --fix && egg-bin pkgfiles && npm run test-local",
"test-local": "egg-bin test",
"gen-dts": "j2d ./index.js",
"pub": "npm run gen-dts && npm run pkgfiles && npm publish",
"cov": "egg-bin cov",
"ci": "npm run lint && egg-bin pkgfiles --check && npm run cov",
"pkgfiles": "egg-bin pkgfiles"
},
"ci": {
"version": "8, 10, 11"
},
"eslintIgnore": [
"coverage",
"dist"
],
"repository": {
"type": "git",
"url": ""
},
"files": [
"index.js",
"bin.js",
"index.d.ts"
],
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"main": "index.js",
"types": "index.d.ts",
"author": "whxaxes <whxaxes@gmail.com>",
"license": "MIT"
}