This repository has been archived by the owner on Aug 14, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "trustoss-spec",
"version": "0.0.2",
"description": "A set of standards for Open Source Software projects that establish and maintain trust in your community.",
"main": "spec.js",
"scripts": {
"test": "tap ./**/*.spec.js"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/trustoss/spec.git"
},
"keywords": [
"spec",
"docs",
"documentation",
"opensource",
"open",
"source",
"oss",
"readme",
"trustoss",
"trust",
"ossmanifesto",
"manifesto"
],
"author": "Ozzy Haven <[email protected]> (@therebelrobot)",
"license": "MIT",
"bugs": {
"url": "https://github.com/trustoss/spec/issues"
},
"homepage": "https://github.com/trustoss/spec#readme",
"dependencies": {
"require-dir": "^0.3.0"
},
"devDependencies": {
"careful": "^1.1.0",
"ghooks": "^1.3.2",
"standard": "^8.3.0",
"tap": "^7.1.2",
"validate-commit-msg": "^2.8.2"
},
"config": {
"validate-commit-msg": {
"helpMessage": "Commit message \n\n\t%s\nis not following this project's commit standards. Please follow Angular Commit Message Standards."
},
"careful": {
"prefixes": [
"feature",
"fix",
"release",
"docs"
],
"suggestions": {
"features": "feature",
"feat": "feature",
"bugfix": "fix",
"hotfix": "fix",
"bug": "fix",
"releases": "release",
"doc": "docs"
},
"skip": [
"demo",
"develop"
],
"disallowed": [
"edge",
"master"
],
"banned": [
"wip"
],
"seperator": "/",
"msgBranchBanned": "Branch name %s banned from push usage",
"msgPrefixNotAllowed": "Branch must have an appropriate prefix (feature, hotfix, bugfix, docs)",
"msgSeperatorRequired": "Branch must have an appropriate prefix (feature, hotfix, bugfix, docs)"
},
"ghooks": {
"pre-commit": "careful",
"commit-msg": "validate-commit-msg",
"pre-push": "npm test"
}
}
}