forked from simonihmig/ember-stargate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.64 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
{
"workspaces": [
"packages/*"
],
"private": true,
"repository": "https://github.com/kaliber5/ember-stargate",
"license": "MIT",
"author": "Simon Ihmig <[email protected]>",
"scripts": {
"prepare": "yarn workspace ember-stargate run prepare",
"start": "npm-run-all --parallel start:*",
"start:addon": "yarn workspace ember-stargate run start",
"start:test-app": "yarn workspace test-app run start",
"lint": "npm-run-all --aggregate-output --continue-on-error --parallel lint:*",
"lint:addon": "yarn workspace ember-stargate 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-stargate 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:*",
"test:addon": "yarn workspace ember-stargate run test",
"test:test-app": "yarn workspace test-app run test"
},
"devDependencies": {
"npm-run-all": "4.1.5",
"prettier": "2.7.1",
"release-it": "14.14.3",
"release-it-lerna-changelog": "3.1.0",
"release-it-yarn-workspaces": "2.0.1"
},
"release-it": {
"plugins": {
"release-it-lerna-changelog": {
"infile": "CHANGELOG.md",
"launchEditor": false
},
"release-it-yarn-workspaces": true
},
"git": {
"tagName": "v${version}"
},
"github": {
"release": true,
"tokenRef": "GITHUB_AUTH"
},
"npm": false
},
"resolutions": {
"socket.io": "4.5.1"
},
"version": "0.4.2"
}