-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
86 lines (86 loc) · 2.11 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "ember-template-lint-formatter-sonarqube",
"version": "2.1.2",
"description": "An ember-template-lint formatter to output JSON in a format compatible with SonarQube external analyzer format",
"keywords": [
"ember-template-lint"
],
"repository": {
"type": "git",
"url": "https://github.com/scalvert/ember-template-lint-formatter-sonarqube.git"
},
"license": "MIT",
"author": "Steve Calvert",
"type": "module",
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts --clean",
"lint": "eslint .",
"prepare": "npm run build",
"prepublishOnly": "npm run build",
"test": "FORCE_COLOR=1 npm-run-all lint test:*",
"test:vitest": "vitest run"
},
"devDependencies": {
"@babel/eslint-parser": "^7.16.5",
"@scalvert/bin-tester": "^2.0.0",
"ember-template-lint": "^5.11.0",
"eslint": "^8.7.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-unicorn": "^40.1.0",
"execa": "^5.1.1",
"fixturify-project": "^2.1.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.5.1",
"release-it": "^14.2.1",
"release-it-lerna-changelog": "^3.1.0",
"strip-ansi": "^6.0.1",
"tsup": "^5.12.1",
"typescript": "^4.5.4",
"vite": "^2.8.6",
"vitest": "^0.25.2"
},
"peerDependencies": {
"ember-template-lint": "^4.3.0"
},
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
},
"release-it": {
"plugins": {
"release-it-lerna-changelog": {
"infile": "CHANGELOG.md",
"launchEditor": true
}
},
"git": {
"tagName": "v${version}"
},
"github": {
"release": true,
"tokenRef": "GITHUB_AUTH"
}
},
"engines": {
"node": ">=14"
},
"volta": {
"node": "16.13.2",
"npm": "7.24.2"
}
}