-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
59 lines (59 loc) · 1.94 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
{
"private": true,
"repository": {
"type": "git",
"url": "git@github.com:rwjblue/ember-router-helpers.git"
},
"workspaces": [
"packages/*"
],
"scripts": {
"prepare": "yarn workspace ember-router-helpers run prepare",
"start": "npm-run-all --parallel start:*",
"start:addon": "yarn workspace ember-router-helpers run start",
"start:test-app": "yarn workspace test-app run start",
"lint": "npm-run-all --aggregate-output --continue-on-error --parallel \"lint:!(fix)\"",
"lint:addon": "yarn workspace ember-router-helpers run lint",
"lint:test-app": "yarn workspace test-app run lint",
"lint:fix": "npm-run-all --aggregate-output --continue-on-error --parallel lint:fix:*",
"lint:fix:addon": "yarn workspace ember-router-helpers run lint:fix",
"lint:fix:test-app": "yarn workspace test-app run lint:fix",
"test": "npm-run-all --aggregate-output --continue-on-error --parallel \"test:!(watch)\"",
"test:watch": "npm-run-all --aggregate-output --continue-on-error --parallel test:watch:*",
"test:test-app": "yarn workspace test-app run test",
"test:watch:test-app": "yarn workspace test-app run test:watch",
"test:watch:addon": "yarn workspace ember-router-helpers run start",
"release": "release-it"
},
"devDependencies": {
"@release-it-plugins/lerna-changelog": "^5.0.0",
"@release-it-plugins/workspaces": "^3.2.0",
"npm-run-all": "^4.1.5",
"release-it": "^15.5.0"
},
"volta": {
"node": "16.14.2",
"yarn": "1.22.17"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"release-it": {
"plugins": {
"@release-it-plugins/lerna-changelog": {
"infile": "CHANGELOG.md",
"launchEditor": false
},
"@release-it-plugins/workspaces": true
},
"git": {
"tagName": "v${version}"
},
"github": {
"release": true,
"tokenRef": "GITHUB_AUTH"
},
"npm": false
},
"version": "1.0.0"
}