-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
120 lines (120 loc) · 2.85 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "generator-ps-search-ui-sfdc",
"version": "0.3.0",
"description": "generator to serve CoveoPS folks with a nodejs module as development environment to interact with the Coveo JS Search UI framework",
"repository": {
"type": "git",
"url": "https://github.com/jfallaire/generator-ps-search-ui-sfdc.git"
},
"files": [
"generators",
"utils",
"routes",
"app",
"config",
"typescript",
"sass",
"views",
"vendor"
],
"keywords": [
"yeoman-generator",
"coveo",
"search",
"ui",
"framework",
"js",
"sfdc",
"bundle"
],
"publishConfig": {
"access": "public"
},
"author": "jfallaire",
"license": "Apache-2.0",
"homepage": "https://github.com/jfallaire/generator-ps-search-ui-sfdc#readme",
"dependencies": {
"chalk": "^1.1.3",
"deep-extend": "^0.4.1",
"generator-node": "^2.5.0",
"inquirer-npm-name": "^2.0.0",
"lodash": "^4.17.11",
"mkdirp": "^0.5.1",
"yeoman-generator": "^1.1.0",
"yosay": "^1.2.1"
},
"devDependencies": {
"@commitlint/cli": "^7.2.1",
"@commitlint/config-conventional": "^7.1.2",
"@semantic-release/changelog": "^3.0.1",
"@semantic-release/commit-analyzer": "^6.1.0",
"@semantic-release/git": "^7.0.5",
"@semantic-release/npm": "^5.1.1",
"@semantic-release/release-notes-generator": "^7.1.4",
"babel-eslint": "^7.1.1",
"commitizen": "^3.0.5",
"conventional-recommended-bump": "^4.0.4",
"cz-conventional-changelog": "^2.1.0",
"husky": "^1.2.0",
"semantic-release": "^15.12.4",
"semver": "^5.6.0",
"standard-version": "^4.4.0",
"travis-deploy-once": "^5.0.9"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"scripts": {
"commit": "git-cz",
"test": "echo 'running test...'",
"semantic-release": "semantic-release",
"travis-deploy-once": "travis-deploy-once"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"release": {
"branch": "master",
"plugins": [
[
"@semantic-release/commit-analyzer",
{
"preset": "angular",
"parserOpts": {
"noteKeywords": [
"BREAKING CHANGE",
"BREAKING CHANGES",
"BREAKING"
]
}
}
],
[
"@semantic-release/release-notes-generator",
{
"preset": "angular",
"parserOpts": {
"noteKeywords": [
"BREAKING CHANGE",
"BREAKING CHANGES",
"BREAKING"
]
},
"writerOpts": {
"commitsSort": [
"subject",
"scope"
]
}
}
],
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/git"
]
}
}