-
Notifications
You must be signed in to change notification settings - Fork 35
/
package.json
39 lines (39 loc) · 954 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
{
"name": "weallcontribute",
"version": "1.0.9",
"description": "CONTRIBUTING.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-coc": "weallbehave -o . && git add CODE_OF_CONDUCT.md && git commit -m 'docs(coc): updated CODE_OF_CONDUCT.md'"
},
"repository": "https://github.com/wealljs/weallcontribute",
"keywords": [
"documentation",
"projects"
],
"author": {
"name": "Kat Marchán",
"email": "[email protected]",
"twitter": "@maybekatz"
},
"license": "CC0-1.0",
"dependencies": {
"hosted-git-info": "^2.2.0",
"yargs": "^6.6.0"
},
"devDependencies": {
"nyc": "^15.1.0",
"standard": "^8.6.0",
"tap": "^16.3.4",
"weallbehave": "^1.0.0"
}
}