-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.96 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
{
"version": "0.1.8",
"private": true,
"repository": "https://github.com/evoactivity/ember-fast-marquee",
"license": "MIT",
"author": "Liam Potter",
"workspaces": [
"packages/*"
],
"scripts": {
"prepare": "yarn workspace ember-fast-marquee run prepare",
"start": "KEEP_DATA_TEST_SELECTORS=1 npm-run-all --parallel start:*",
"start:addon": "yarn workspace ember-fast-marquee 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-fast-marquee 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-fast-marquee run lint:fix",
"lint:fix:test-app": "yarn workspace test-app run lint:fix",
"test": "KEEP_DATA_TEST_SELECTORS=1 yarn prepare && 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-fast-marquee run start"
},
"devDependencies": {
"npm-run-all": "^4.1.5",
"prettier": "^2.6.2",
"release-it": "^15.0.0",
"release-it-lerna-changelog": "^5.0.0",
"release-it-yarn-workspaces": "^3.0.0"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"release-it": {
"plugins": {
"release-it-lerna-changelog": {
"infile": "CHANGELOG.md",
"launchEditor": true
},
"release-it-yarn-workspaces": true
},
"git": {
"tagName": "v${version}"
},
"github": {
"release": true,
"tokenRef": "GITHUB_AUTH"
},
"npm": false
},
"volta": {
"node": "16.19.1"
}
}