forked from ember-fastboot/ember-cli-fastboot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 1.9 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
68
69
70
71
72
73
{
"private": true,
"version": "4.1.1",
"repository": {
"type": "git",
"url": "git@github.com:ember-fastboot/ember-cli-fastboot.git"
},
"workspaces": {
"packages": [
"packages/*",
"test-packages/*"
],
"nohoist": [
"**/ember-cli-addon-tests"
]
},
"scripts": {
"test": "npm-run-all test:*",
"test:ember-cli-fastboot": "yarn workspace @gaurav9576/ember-cli-fastboot test:ember",
"test:fastboot": "yarn workspace @gaurav9576/fastboot test",
"test:fastboot-express-middleware": "yarn workspace @gaurav9576/fastboot-express-middleware test",
"test:fastboot-app-server": "yarn workspace @gaurav9576/fastboot-app-server test:mocha",
"test:integration": "yarn workspace integration-tests test",
"test:extra": "yarn workspace basic-app test:mocha && yarn workspace custom-fastboot-app test:mocha"
},
"devDependencies": {
"npm-run-all": "^4.1.5",
"release-it": "^14.2.2",
"release-it-lerna-changelog": "^3.1.0",
"release-it-yarn-workspaces": "^2.0.0"
},
"resolutions": {
"fastboot": "file:packages/fastboot",
"ember-cli-fastboot": "file:packages/ember-cli-fastboot"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"release-it": {
"plugins": {
"release-it-lerna-changelog": {
"infile": "CHANGELOG.md",
"launchEditor": true
},
"release-it-yarn-workspaces": {
"workspaces": [
"packages/*"
],
"additionalManifests": {
"versionUpdates": [
"package.json"
],
"dependencyUpdates": [
"package.json",
"test-packages/*/package.json"
]
}
}
},
"git": {
"tagName": "v${version}"
},
"github": {
"release": true,
"tokenRef": "GITHUB_AUTH"
},
"npm": false
},
"volta": {
"node": "16.18.1",
"yarn": "1.22.19"
}
}