-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
48 lines (48 loc) · 1 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
{
"name": "@movable/template-lint-plugin",
"version": "4.0.0",
"main": "index.js",
"license": "MIT",
"files": [
"index.js",
"lib"
],
"scripts": {
"lint": "eslint .",
"test": "jest",
"release": "standard-version",
"prepare": "husky install"
},
"dependencies": {
"ember-template-lint": "^3.16.0"
},
"devDependencies": {
"@movable/eslint-config": "^2.0.0",
"@movable/eslint-config-node": "^1.0.0",
"@movable/prettier-config": "^1.0.0",
"eslint": "^8.37.0",
"husky": "^8.0.3",
"jest": "^29.5.0",
"lint-staged": "^13.2.1",
"prettier": "^2.8.7",
"standard-version": "^9.3.2",
"theredoc": "^1.0.0"
},
"lint-staged": {
"*.js": "eslint --fix",
"*.{json,md,yml}": "prettier --write"
},
"standard-version": {
"scripts": {
"postchangelog": "prettier --write CHANGELOG.md"
}
},
"volta": {
"node": "14.19.3",
"yarn": "1.22.10"
},
"engines": {
"node": ">= 14"
},
"packageManager": "[email protected]"
}