This repository has been archived by the owner on Nov 19, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.67 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
{
"name": "@xerox/semantic-release-config",
"version": "1.4.2",
"description": "semantic-release shareable config for Xerox projects",
"repository": "[email protected]:xeroxinteractive/semantic-release-config.git",
"homepage": "https://github.com/xeroxinteractive/semantic-release-config#readme",
"author": "Andrew Leedham <[email protected]>",
"license": "MIT",
"files": [
"npm.js",
"simple.js"
],
"scripts": {
"lint": "eslint .",
"format": "eslint . --fix",
"deploy": "semantic-release"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint --env HUSKY_GIT_PARAMS"
}
},
"eslintConfig": {
"extends": [
"@xerox"
]
},
"prettier": "@xerox/prettier-config",
"release": {
"extends": "./npm"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@semantic-release/changelog": "^3.0.4",
"@semantic-release/commit-analyzer": "^6.2.0",
"@semantic-release/git": "^7.0.12",
"@semantic-release/npm": "^5.1.9",
"@semantic-release/release-notes-generator": "^7.2.0",
"semantic-release-slack-bot": "^1.1.0"
},
"peerDependencies": {
"semantic-release": "*"
},
"devDependencies": {
"@commitlint/cli": "^8.0.0",
"@commitlint/config-conventional": "^8.0.0",
"@xerox/eslint-config": "^1.10.2",
"@xerox/prettier-config": "^1.1.1",
"eslint": "^5.16.0",
"husky": "^3.0.0",
"prettier": "^1.18.2",
"semantic-release": "^15.13.16"
},
"resolutions": {
"set-value": ">=2.0.1",
"mem": ">=4.0.0",
"https-proxy-agent": ">=2.2.3",
"handlebars": ">=4.5.2"
}
}