@newhighsco/release-config 1.2.0 → 1.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +7 -59
package/README.md CHANGED
@@ -7,7 +7,7 @@ New High Score [shareable config](https://semantic-release.gitbook.io/semantic-r
7
7
  Install semantic-relase and `@newhighsco/release-config`:
8
8
 
9
9
  ```
10
- npm install --save-dev semantic-release @newhighsco/release-config
10
+ yarn add -D semantic-release @newhighsco/release-config
11
11
  ```
12
12
 
13
13
  ## Usage
package/package.json CHANGED
@@ -1,27 +1,25 @@
1
1
  {
2
2
  "name": "@newhighsco/release-config",
3
3
  "description": "New High Score shareable config for semantic-release",
4
- "version": "1.2.0",
4
+ "version": "1.3.0",
5
5
  "author": "New High Score <hello@newhighsco.re>",
6
6
  "license": "ISC",
7
+ "private": false,
7
8
  "repository": {
8
9
  "type": "git",
9
- "url": "https://github.com/newhighsco/release-config.git"
10
+ "url": "https://github.com/newhighsco/config.git",
11
+ "directory": "packages/release-config"
10
12
  },
11
- "homepage": "https://github.com/newhighsco/release-config#readme",
13
+ "homepage": "https://github.com/newhighsco/config/tree/main/packages/release-config#readme",
12
14
  "bugs": {
13
- "url": "https://github.com/newhighsco/release-config/issues"
15
+ "url": "https://github.com/newhighsco/config/issues"
14
16
  },
15
17
  "main": "index.js",
16
18
  "files": [
17
19
  "orb.js"
18
20
  ],
19
21
  "scripts": {
20
- "test": "npm run lint",
21
- "lint": "npm-run-all --parallel lint:*",
22
- "lint:js": "eslint --cache --ext .js,.jsx,.json .",
23
- "format": "npm-run-all --parallel format:*",
24
- "format:js": "npm run lint:js -- --fix"
22
+ "test": "echo 'No test specified'"
25
23
  },
26
24
  "dependencies": {
27
25
  "@semantic-release/changelog": "6.0.1",
@@ -32,57 +30,7 @@
32
30
  "@semantic-release/release-notes-generator": "10.0.3",
33
31
  "semantic-release-circleci-orb": "1.1.1"
34
32
  },
35
- "devDependencies": {
36
- "@commitlint/cli": "16.2.3",
37
- "@newhighsco/commitlint-config": "1.0.24",
38
- "@newhighsco/editor-config": "1.1.2",
39
- "@newhighsco/eslint-config": "3.1.21",
40
- "@newhighsco/prettier-config": "2.0.18",
41
- "eslint": "8.12.0",
42
- "husky": "7.0.4",
43
- "npm-run-all": "4.1.5",
44
- "prettier": "2.6.1",
45
- "semantic-release": "19.0.2"
46
- },
47
33
  "peerDependencies": {
48
34
  "semantic-release": "19.0.2"
49
- },
50
- "commitlint": {
51
- "extends": [
52
- "@newhighsco"
53
- ]
54
- },
55
- "eslintConfig": {
56
- "extends": [
57
- "@newhighsco"
58
- ]
59
- },
60
- "husky": {
61
- "hooks": {
62
- "commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
63
- }
64
- },
65
- "prettier": "@newhighsco/prettier-config",
66
- "release": {
67
- "extends": ".",
68
- "branches": [
69
- "main"
70
- ]
71
- },
72
- "renovate": {
73
- "extends": [
74
- "@newhighsco"
75
- ],
76
- "baseBranches": [
77
- "main"
78
- ],
79
- "packageRules": [
80
- {
81
- "extends": [
82
- "monorepo:semantic-release"
83
- ],
84
- "semanticCommitType": "fix"
85
- }
86
- ]
87
35
  }
88
36
  }