forked from sindresorhus/conduct
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.05 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": "conduct",
"version": "1.0.2",
"description": "Generate a Code of Conduct for your project - Provided by Contributor Covenant",
"license": "MIT",
"repository": "sindresorhus/conduct",
"author": {
"name": "Sindre Sorhus",
"email": "sindresorhus@gmail.com",
"url": "sindresorhus.com"
},
"bin": {
"conduct": "cli.js"
},
"engines": {
"node": ">=4"
},
"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": "^1.1.3",
"conf": "^0.12.0",
"execa": "^0.6.3",
"get-emails": "^2.0.0",
"globby": "^6.1.0",
"inquirer": "^3.0.6",
"log-symbols": "^1.0.2",
"meow": "^3.7.0"
},
"devDependencies": {
"ava": "*",
"tempy": "^0.1.0",
"xo": "*"
}
}