-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
66 lines (66 loc) · 1.68 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
{
"name": "@quave/eslint-plugin-meteor-quave",
"version": "1.5.2",
"description": "Quave linting rules for ESLint",
"main": "lib/index.js",
"scripts": {
"coverage:check": "nyc check-coverage --lines 83 --functions 87 --branches 79",
"coverage:report": "nyc report",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"lint": "eslint ./",
"pretest": "npm run lint",
"rule": "node scripts/new-rule.js",
"test": "npm run unit-test && npm run coverage:report && npm run coverage:check",
"unit-test": "nyc --reporter=lcov mocha tests --recursive",
"unit-test:watch": "npm run unit-test -s -- --watch"
},
"files": [
"README.md",
"lib"
],
"repository": {
"type": "git",
"url": "https://github.com/quavedev/eslint-plugin.git"
},
"dependencies": {
"invariant": "^2.2.4",
"babel-plugin-module-resolver": "^5.0.0",
"meteor-babel": "^7.10.7",
"recast": "^0.23.4",
"reify": "^0.20.12",
"typescript": "^5.5.4"
},
"devDependencies": {
"@types/eslint": "^8.44.9",
"babel-eslint": "^10.1.0",
"coveralls": "^3.1.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.55.0",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"readline-sync": "^1.4.10",
"validate-commit-msg": "^2.14.0"
},
"peerDependencies": {
"eslint": ">= 3.7.0"
},
"engines": {
"node": ">=12"
},
"keywords": [
"eslint",
"eslint-plugin",
"eslintplugin",
"meteor"
],
"config": {
"ghooks": {
"commit-msg": "node_modules/.bin/validate-commit-msg"
},
"commitizen": {
"path": "node_modules/cz-conventional-changelog/"
}
},
"license": "MIT",
"contributors": []
}