-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
40 lines (40 loc) · 964 Bytes
/
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
{
"name": "weallbehave",
"version": "1.2.0",
"description": "CODE_OF_CONDUCT.md generator",
"main": "index.js",
"files": [
"*.md",
"*.js"
],
"bin": "./index.js",
"scripts": {
"preversion": "npm t",
"postversion": "npm publish && git push --follow-tags",
"pretest": "standard lib test *.js",
"test": "nyc -- tap test/*.js",
"update-contrib": "weallcontribute -o . && git add CONTRIBUTING.md && git commit -m 'docs(contributing): Updated CONTRIBUTING.md'"
},
"repository": "https://github.com/wealljs/weallbehave",
"keywords": [
"documentation",
"projects",
"code of conduct",
"coc"
],
"author": {
"name": "Kat Marchán",
"email": "[email protected]",
"twitter": "@maybekatz"
},
"license": "CC0-1.0",
"dependencies": {
"yargs": "^6.6.0"
},
"devDependencies": {
"nyc": "^10.0.0",
"standard": "^8.6.0",
"tap": "^8.0.1",
"weallcontribute": "^1.0.7"
}
}