-
-
Notifications
You must be signed in to change notification settings - Fork 42
/
package.json
61 lines (61 loc) · 1.09 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
{
"name": "conduct",
"version": "4.0.0",
"description": "Generate a Code of Conduct for your project - Provided by Contributor Covenant",
"license": "MIT",
"repository": "sindresorhus/conduct",
"funding": "https://github.com/sponsors/sindresorhus",
"author": {
"name": "Sindre Sorhus",
"email": "[email protected]",
"url": "https://sindresorhus.com"
},
"type": "module",
"bin": {
"conduct": "./cli.js"
},
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
},
"scripts": {
"test": "xo && ava"
},
"files": [
"cli.js",
"vendor"
],
"keywords": [
"cli-app",
"cli",
"code",
"conduct",
"code-of-conduct",
"contributing",
"contributor",
"covenant",
"friendly",
"inclusive",
"open",
"source",
"open-source",
"oss",
"generate",
"scaffold",
"create"
],
"dependencies": {
"chalk": "^4.1.2",
"conf": "^10.0.3",
"execa": "^5.1.1",
"get-emails": "^4.0.0",
"globby": "^12.0.2",
"inquirer": "^8.2.0",
"log-symbols": "^5.0.0",
"meow": "^10.1.1"
},
"devDependencies": {
"ava": "^3.15.0",
"tempy": "^2.0.0",
"xo": "^0.45.0"
}
}