-
-
Notifications
You must be signed in to change notification settings - Fork 104
/
package.json
62 lines (62 loc) · 1.61 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
60
61
62
{
"private": true,
"workspaces": [
"addon",
"test-app"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ember-cli/ember-resolver.git"
},
"scripts": {
"lint": "npm-run-all --aggregate-output --continue-on-error --parallel \"lint:!(fix)\"",
"lint:fix": "npm-run-all --aggregate-output --continue-on-error --parallel lint:*:fix",
"lint:hbs": "ember-template-lint .",
"lint:hbs:fix": "ember-template-lint . --fix",
"lint:js": "eslint . --cache",
"lint:js:fix": "eslint . --fix"
},
"devDependencies": {
"@babel/eslint-parser": "^7.21.3",
"@babel/plugin-proposal-decorators": "^7.21.0",
"@release-it-plugins/lerna-changelog": "5.0.0",
"@release-it-plugins/workspaces": "^3.2.0",
"ember-template-lint": "^5.7.2",
"eslint": "^8.46.0",
"eslint-config-prettier": "^8.9.0",
"eslint-plugin-ember": "^11.5.0",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-qunit": "^7.3.4",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.4",
"release-it": "^15.6.0"
},
"release-it": {
"hooks": {
"before:init": "cp README.md LICENSE.md addon/"
},
"plugins": {
"@release-it-plugins/workspaces": {
"publish": false
},
"@release-it-plugins/lerna-changelog": {
"infile": "CHANGELOG.md",
"launchEditor": true
}
},
"git": {
"tagName": "v${version}"
},
"npm": false,
"github": {
"release": true,
"tokenRef": "GITHUB_AUTH"
}
},
"volta": {
"node": "14.19.3",
"npm": "8.12.1"
},
"version": "13.1.0"
}