forked from ember-template-lint/ember-template-lint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
100 lines (100 loc) · 2.67 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "ember-template-lint",
"version": "2.14.0",
"description": "Linter for Ember or Handlebars templates.",
"keywords": [],
"homepage": "https://github.com/ember-template-lint/ember-template-lint",
"bugs": {
"url": "https://github.com/ember-template-lint/ember-template-lint/issues"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/ember-template-lint/ember-template-lint.git"
},
"license": "MIT",
"author": "Robert Jackson <me@rwjblue.com>",
"main": "lib/index.js",
"bin": "./bin/ember-template-lint.js",
"scripts": {
"changelog": "lerna-changelog",
"lint": "npm-run-all lint:* --continue-on-error",
"lint:docs": "markdownlint '**/*.md'",
"lint:js": "eslint . --cache",
"lint:package-json": "sort-package-json --check",
"new": "node dev/new-rule/index.js",
"release": "release-it",
"test": "npm-run-all lint:* test:*",
"test:jest": "jest",
"update": "node ./scripts/update-rules.js"
},
"jest": {
"coveragePathIgnorePatterns": [
"<rootDir>/node_modules/",
"<rootDir>/test/"
],
"testMatch": [
"<rootDir>/test/**/*-test.js"
]
},
"dependencies": {
"chalk": "^4.0.0",
"ember-template-recast": "^4.2.0",
"find-up": "^5.0.0",
"get-stdin": "^8.0.0",
"globby": "^11.0.1",
"is-glob": "^4.0.1",
"micromatch": "^4.0.2",
"resolve": "^1.17.0",
"v8-compile-cache": "^2.1.1",
"yargs": "^16.0.3"
},
"devDependencies": {
"@babel/parser": "^7.11.4",
"@babel/traverse": "^7.11.5",
"common-tags": "^1.8.0",
"eslint": "^7.11.0",
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-filenames": "^1.3.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-import-helpers": "^1.1.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-unicorn": "^22.0.0",
"execa": "^4.0.3",
"fixturify-project": "^2.1.0",
"jest": "^26.5.3",
"lerna-changelog": "^1.0.1",
"markdownlint-cli": "^0.24.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.1.2",
"release-it": "^14.1.0",
"release-it-lerna-changelog": "^2.4.0",
"sort-package-json": "^1.46.0"
},
"engines": {
"node": "10.* || >= 12.*"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"release-it": {
"plugins": {
"release-it-lerna-changelog": {
"infile": "CHANGELOG.md",
"launchEditor": true
}
},
"git": {
"tagName": "v${version}"
},
"github": {
"release": true,
"tokenRef": "GITHUB_AUTH"
}
},
"volta": {
"node": "12.16.3",
"yarn": "1.22.4"
}
}