-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
59 lines (59 loc) · 1.12 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
{
"name": "medic",
"version": "3.1.1",
"description": "Perform bulk URL status checks and track changes.",
"author": "Roland Warmerdam (https://roland.codes)",
"keywords": [
"url",
"http",
"status",
"code",
"test"
],
"repository": "Rowno/medic",
"license": "MIT",
"main": "lib/index.js",
"bin": {
"medic": "lib/cli.js"
},
"scripts": {
"test": "eslint '**/*.js' && mocha"
},
"engines": {
"node": ">=8"
},
"dependencies": {
"bluebird": "^2.6.2",
"chalk": "^1.0.0",
"figures": "^1.3.5",
"front-matter": "^2.0.0",
"get-stdin": "^5.0.0",
"lodash": "^4.17.11",
"meow": "^3.0.0",
"request": "^2.51.0",
"update-notifier": "^0.5.0"
},
"devDependencies": {
"chai": "^3.2.0",
"eslint": "^6.5.1",
"eslint-config-prettier": "^6.4.0",
"eslint-config-xo": "^0.27.2",
"express": "^4.13.3",
"mocha": "^6.2.2",
"nock": "^11.4.0",
"time-grunt": "^1.0.0"
},
"files": [
"lib"
],
"eslintConfig": {
"extends": [
"xo/esnext",
"prettier"
],
"env": {
"node": true,
"mocha": true
}
}
}