forked from yeoman/doctor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.03 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
{
"name": "yeoman-doctor",
"version": "3.0.2",
"description": "Detect potential issues with users system that could prevent Yeoman from working correctly",
"license": "BSD-2-Clause",
"author": "Yeoman",
"repository": "yeoman/doctor",
"main": "lib/index.js",
"bin": {
"yodoctor": "lib/cli.js"
},
"engines": {
"node": ">=4"
},
"scripts": {
"test": "xo && mocha test/** -R spec"
},
"files": [
"lib"
],
"keywords": [
"cli-app",
"cli",
"yeoman",
"yo",
"doctor",
"system",
"health",
"report",
"check"
],
"dependencies": {
"ansi-styles": "^3.2.0",
"bin-version-check": "^3.0.0",
"chalk": "^2.3.0",
"each-async": "^1.1.1",
"latest-version": "^3.1.0",
"log-symbols": "^2.1.0",
"object-values": "^1.0.0",
"semver": "^5.0.3",
"twig": "^1.10.5",
"user-home": "^2.0.0"
},
"devDependencies": {
"mocha": "^4.1.0",
"proxyquire": "^1.7.9",
"sinon": "^4.1.3",
"xo": "0.20.3"
},
"xo": {
"space": true,
"envs": [
"node",
"mocha"
],
"rules": {
"node/no-deprecated-api": "off"
}
}
}