forked from shepherd-pro/react-shepherd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.08 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
{
"repository": {
"type": "git",
"url": "https://github.com/shipshapecode/react-shepherd.git"
},
"private": true,
"workspaces": [
"packages/**/*"
],
"devDependencies": {
"npm-run-all": "^4.1.5",
"release-it-yarn-workspaces": "^2.0.1"
},
"scripts": {
"build": "yarn workspace react-shepherd build",
"release": "yarn workspace react-shepherd release",
"start:lib": "yarn workspace react-shepherd start",
"start:site": "yarn workspace react-shepherd-example start",
"start": "run-p start:*",
"test": "yarn workspace react-shepherd test"
},
"resolutions": {
"jsdom": "14.1.0"
},
"release-it": {
"plugins": {
"release-it-yarn-workspaces": {
"workspaces": [
"packages/lib"
]
},
"release-it-lerna-changelog": {
"infile": "CHANGELOG.md",
"launchEditor": true
}
},
"git": {
"tagName": "v${version}"
},
"github": {
"release": true,
"tokenRef": "GITHUB_AUTH"
},
"npm": {
"ignoreVersion": true,
"skipChecks": false
}
}
}