forked from adopted-ember-addons/ember-file-upload
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.52 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
{
"private": true,
"scripts": {
"ember-try-one": "pnpm -F test-app ember-try-one",
"release": "pnpm prepare && pnpm -F ember-file-upload release",
"start": "npm-run-all --parallel start:*",
"start:addon": "pnpm -F ember-file-upload start",
"start:test-app": "pnpm -F test-app start",
"lint": "pnpm --filter '*' lint",
"lint:fix": "pnpm --filter '*' lint:fix",
"test": "pnpm prepare && pnpm -F test-app test:ember",
"test:test-app": "pnpm -F test-app test",
"test:watch": "npm-run-all --aggregate-output --continue-on-error --parallel test:watch:*",
"test:watch:test-app": "pnpm -F test-app test --server",
"test:watch:addon": "pnpm -F ember-file-upload start",
"website": "pnpm --filter website start"
},
"repository": "https://github.com/adopted-ember-addons/ember-file-upload",
"devDependencies": {
"@release-it-plugins/lerna-changelog": "^6.1.0",
"@release-it-plugins/workspaces": "^4.2.0",
"npm-run-all": "^4.1.5",
"release-it": "^17.0.0"
},
"release-it": {
"plugins": {
"@release-it-plugins/workspaces": {
"workspaces": [
"ember-file-upload"
]
},
"@release-it-plugins/lerna-changelog": {
"infile": "CHANGELOG.md",
"launchEditor": true
}
},
"git": {
"tagName": "v${version}"
},
"github": {
"release": true,
"tokenRef": "GITHUB_AUTH"
},
"npm": false
},
"pnpm": {
"overrides": {
"@glimmer/validator": "^0.92.0"
}
},
"version": "9.1.0"
}