-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
106 lines (106 loc) · 2.98 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
101
102
103
104
105
106
{
"name": "eslint-plugin-regex",
"description": "ESLint rules using Regular Expression",
"version": "1.10.0",
"license": "MIT",
"author": "Gonzalo Müller Bravo",
"main": "lib/index.js",
"files": [
"lib"
],
"homepage": "https://eslint-plugin-regex.github.io",
"repository": {
"type": "git",
"url": "https://github.com/gmullerb/eslint-plugin-regex"
},
"bugs": {
"url": "https://github.com/gmullerb/eslint-plugin-regex/issues"
},
"keywords": [
"eslint-plugin-regex",
"eslint",
"regex-rule",
"regex",
"regexp",
"eslint-regex",
"eslint-rule",
"eslint-regex-rule",
"rule",
"expression",
"regular-expression",
"eslint-regular-expression",
"eslint-regular-expression-rule",
"eslintrule",
"regular-expression-rule",
"eslintplugin",
"eslint-plugin",
"plugin",
"coding style",
"coding standards",
"code checker",
"code linter",
"code quality",
"code standards",
"code style",
"syntax",
"lint",
"linter",
"jshint",
"js-hint",
"jslint",
"js-lint",
"js lint",
"js quality",
"js rules",
"js rules",
"js standards",
"js style",
"style guide",
"style checker",
"style linter",
"standard",
"standard style",
"style"
],
"scripts": {
"lint": "npm run lint.common && npm run lint.source",
"lint.common": "npm run title --title=\"Lint Common\" -s && eslint --config .eslintrc-any.json \"**/[\\.a-zA-Z]*.+(js|jsx|ts|tsx|json|yml|xml|sh|txt|md|svg|properties|gradle|java|cpp|c|html|css|groovy)\" \"**/.+(|gitignore|npmignore)\" --no-eslintrc --ignore-pattern \"build\" --ignore-pattern \"tests/lib/rules/case-*.*\"",
"lint.source": "npm run title --title=\"Lint Source Code\" -s && eslint --color \"**/*.js\" --ignore-pattern \"tests/lib/rules/case-*.js\"",
"test.only": "node tests/tests.js && node tests/lib/rules/e2e-tests.js",
"test": "npm run title --title=\"Test With Coverage\" -s && mkdir -p build && nyc npm run test.only",
"check": "npm run title --title=\"Install\" -s && npm install && npm run lint && npm test && mkdir -p build && cd build && npm pack ../",
"postcheck": "echo \"check OK\"",
"check.all": "npm run check && npm audit",
"prepublishOnly": "npm run check",
"prepack": "npm run title --title=\"Build Package\" -s",
"title": "echo ==== \"\\033[1;;33m\"$npm_config_title\"\\033[0m\" ===="
},
"engines": {
"node": ">=6.0.0"
},
"peerDependencies": {
"eslint": ">=4.0.0"
},
"devDependencies": {
"any-eslint-parser": "^1.0.1",
"eslint": "^8.13.0",
"eslint-plugin-base-style-config": "^2.9.2",
"eslint-plugin-import": "^2.25.4",
"jasmine": "^4.0.2",
"nyc": "^15.1.0"
},
"nyc": {
"check-coverage": true,
"branches": 85,
"functions": 50,
"statements": 25,
"reporter": [
"lcov",
"cobertura",
"text",
"text-summary"
],
"report-dir": "build/coverage",
"temp-dir": "build/coverage"
}
}