forked from ember-fastboot/ember-cli-fastboot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.81 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.81 KB
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
{
"private": true,
"version": "4.1.1",
"repository": {
"type": "git",
"url": "[email protected]:ember-fastboot/ember-cli-fastboot.git"
},
"scripts": {
"lint": "pnpm --filter './*packages/**' lint",
"test": "npm-run-all test:*",
"test:ember-cli-fastboot": "pnpm --filter ember-cli-fastboot test:ember",
"test:fastboot": "pnpm --filter fastboot test",
"test:fastboot-express-middleware": "pnpm --filter fastboot-express-middleware test",
"test:fastboot-app-server": "pnpm --filter fastboot-app-server test:mocha",
"test:integration": "pnpm --filter integration-tests test",
"test:extra": "pnpm --filter basic-app test:mocha && pnpm --filter custom-fastboot-app test:mocha"
},
"devDependencies": {
"@release-it-plugins/lerna-changelog": "^5.0.0",
"@release-it-plugins/workspaces": "^3.2.0",
"npm-run-all": "^4.1.5",
"release-it": "^14.2.2"
},
"resolutions": {
"fastboot": "4.1.1"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"release-it": {
"plugins": {
"release-it-lerna-changelog": {
"infile": "CHANGELOG.md",
"launchEditor": true
},
"@release-it-plugins/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
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": ["@babel/*", "@eslint/*"]
}
},
"volta": {
"node": "16.18.1",
"yarn": "1.22.19",
"pnpm": "7.33.5"
}
}