forked from yeoman/yosay
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.35 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
63
64
65
{
"name": "begoo",
"version": "2.0.2",
"description": "Say something with style ;)",
"license": "BSD-2-Clause",
"keywords": [
"ansi",
"app",
"begoo",
"bin",
"box",
"cli",
"cli-app",
"cowsay",
"message",
"say",
"yeoman",
"yo"
],
"type": "module",
"homepage": "https://github.com/shariati/begoo",
"author": "Amin Shariati",
"repository": "shariati/begoo",
"bin": "cli.js",
"files": [
"index.js",
"cli.js"
],
"engines": {
"node": ">=12"
},
"scripts": {
"test": "standard && mocha",
"readme": "node ./node_modules/.bin/node-readme",
"snyk-protect": "snyk-protect",
"prepare": "npm run snyk-protect"
},
"dependencies": {
"@snyk/protect": "latest",
"ansi-regex": "^6.0.1",
"ansi-styles": "^6.1.0",
"chalk": "^2.4.2",
"cli-boxes": "^2.1.0",
"pad-component": "0.0.1",
"repeating": "^3.0.0",
"string-width": "^4.1.0",
"strip-ansi": "^7.0.1",
"taketalk": "^1.0.0",
"wrap-ansi": "^8.0.1"
},
"devDependencies": {
"eslint": "^8.0.1",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^4.0.0",
"mocha": "^9.1.3",
"standard": "^16.0.4"
},
"xo": {
"space": true
},
"snyk": true
}