forked from ember-lifeline/ember-lifeline
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.35 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
{
"version": "7.0.0",
"workspaces": [
"packages/*"
],
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/ember-lifeline/ember-lifeline.git"
},
"license": "MIT",
"contributors": [
"Robert Jackson <me@rwjblue.com>",
"Steve Calvert <steve.calvert@gmail.com>"
],
"scripts": {
"build": "yarn workspaces run build",
"docs:readme": "cp ./README.md ./packages/ember-lifeline/README.md",
"lint": "yarn workspaces run lint",
"prepare": "yarn workspace ember-lifeline run prepare",
"test": "yarn workspaces run test"
},
"devDependencies": {
"npm-run-all": "^4.1.5",
"prettier": "^2.6.2",
"release-it": "^15.10.3",
"release-it-lerna-changelog": "^5.0.0",
"release-it-yarn-workspaces": "^3.0.0"
},
"resolutions": {
"favicons": "5.3.0"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"release-it": {
"plugins": {
"release-it-lerna-changelog": {
"infile": "CHANGELOG.md",
"launchEditor": true
},
"release-it-yarn-workspaces": true
},
"git": {
"tagName": "v${version}"
},
"github": {
"release": true,
"tokenRef": "GITHUB_AUTH"
},
"npm": false
},
"volta": {
"node": "16.19.0",
"yarn": "1.22.19"
},
"dependencies": {
"caniuse-lite": "^1.0.30001482"
}
}