forked from adopted-ember-addons/ember-keyboard
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
66 lines (66 loc) · 1.44 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
{
"version": "8.2.0",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/adopted-ember-addons/ember-keyboard.git"
},
"workspaces": [
"addon",
"docs",
"test-app"
],
"scripts": {
"prepare": "cd addon && yarn build",
"release": "release-it",
"test": "cd test-app && yarn test"
},
"devDependencies": {
"release-it": "^14.14.2",
"release-it-lerna-changelog": "^4.0.1",
"release-it-yarn-workspaces": "^2.0.1"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"release-it": {
"hooks": {
"before:init": "cp README.md LICENSE.md addon/",
"after:release": "cd docs && yarn deploy && git push origin"
},
"plugins": {
"release-it-lerna-changelog": {
"infile": "CHANGELOG.md",
"launchEditor": true
},
"release-it-yarn-workspaces": {
"workspaces": [
"addon"
],
"additionalManifests": {
"dependencyUpdates": [
"docs/package.json",
"test-app/package.json"
],
"versionUpdates": [
"package.json",
"docs/package.json",
"test-app/package.json"
]
}
}
},
"git": {
"tagName": "v${version}"
},
"github": {
"release": true,
"tokenRef": "GITHUB_AUTH"
},
"npm": false
},
"volta": {
"node": "12.22.12",
"yarn": "1.22.18"
}
}