-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
56 lines (56 loc) · 1.24 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
{
"name": "meteor-fast-render",
"version": "4.0.9",
"scripts": {
"lint": "eslint ./ && markdownlint ./",
"publish-release": "rimraf ./node_modules && meteor publish && npm i --only=dev",
"pre-commit": "lint-staged",
"prepare": "husky install"
},
"devDependencies": {
"@babel/core": "7.24.5",
"@babel/eslint-parser": "^7.24.5",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-import-resolver-meteor": "^0.4.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"husky": "^8.0.3",
"lint-staged": "^15.2.2",
"markdownlint-cli": "^0.40.0",
"rimraf": "^5.0.7"
},
"eslintConfig": {
"extends": [
"standard"
],
"ignorePatterns": [
"node_modules",
"testApp/packages"
],
"rules": {
"semi": [
2,
"always"
],
"comma-dangle": [
2,
"always-multiline"
]
},
"parser": "@babel/eslint-parser",
"parserOptions": {
"requireConfigFile": false
},
"env": {
"browser": true,
"node": true,
"es6": true
}
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.md": "markdownlint -f"
}
}