|
18 | 18 | "main": "lib/index.js",
|
19 | 19 | "scripts": {
|
20 | 20 | "build": "rimraf lib && babel src --out-dir lib --copy-files",
|
21 |
| - "coveralls": "cat ./reports/lcov.info | coveralls", |
22 | 21 | "create": "node ./scripts/create-rule",
|
23 | 22 | "flow": "if [ ! -e ./.flowconfig ]; then echo \"Could not find .flowconfig\"; else flow; test $? -eq 0 -o $? -eq 2; fi",
|
24 | 23 | "lint:fix": "npm run lint -- --fix",
|
25 | 24 | "lint": "eslint --config .eslintrc src __tests__ __mocks__ scripts",
|
26 | 25 | "prepublish": "safe-publish-latest && not-in-publish || (npm run lint && npm run flow && npm run jest && npm run build)",
|
27 | 26 | "pretest": "npm run lint:fix && npm run flow",
|
28 | 27 | "test": "npm run jest",
|
| 28 | + "posttest": "aud --production", |
29 | 29 | "test:ci": "npm run jest -- --ci --runInBand",
|
30 | 30 | "jest": "jest --coverage __tests__/**/*"
|
31 | 31 | },
|
32 | 32 | "devDependencies": {
|
33 |
| - "@babel/cli": "^7.11.6", |
34 |
| - "@babel/core": "^7.11.6", |
35 |
| - "@babel/plugin-transform-flow-strip-types": "^7.10.4", |
| 33 | + "@babel/cli": "^7.12.10", |
| 34 | + "@babel/core": "^7.12.10", |
| 35 | + "@babel/plugin-transform-flow-strip-types": "^7.12.10", |
| 36 | + "aud": "^1.1.3", |
36 | 37 | "babel-eslint": "^10.1.0",
|
37 | 38 | "babel-jest": "^24.9.0",
|
38 | 39 | "babel-preset-airbnb": "^5.0.0",
|
39 |
| - "coveralls": "^3.1.0", |
40 | 40 | "eslint": "^3 || ^4 || ^5 || ^6 || ^7",
|
41 |
| - "eslint-config-airbnb-base": "^14.2.0", |
| 41 | + "eslint-config-airbnb-base": "^14.2.1", |
42 | 42 | "eslint-plugin-flowtype": "^5.2.0",
|
43 | 43 | "eslint-plugin-import": "^2.22.1",
|
44 | 44 | "estraverse": "^5.2.0",
|
|
48 | 48 | "jest": "^24.9.0",
|
49 | 49 | "jscodeshift": "^0.7.0",
|
50 | 50 | "minimist": "^1.2.5",
|
51 |
| - "object.assign": "^4.1.1", |
| 51 | + "object.assign": "^4.1.2", |
52 | 52 | "rimraf": "^3.0.2",
|
53 | 53 | "safe-publish-latest": "^1.1.4",
|
54 | 54 | "to-ast": "^1.0.0"
|
|
58 | 58 | },
|
59 | 59 | "license": "MIT",
|
60 | 60 | "dependencies": {
|
61 |
| - "@babel/runtime": "^7.11.2", |
| 61 | + "@babel/runtime": "^7.12.5", |
62 | 62 | "aria-query": "^4.2.2",
|
63 |
| - "array-includes": "^3.1.1", |
| 63 | + "array-includes": "^3.1.2", |
64 | 64 | "ast-types-flow": "^0.0.7",
|
65 |
| - "axe-core": "^4.0.2", |
| 65 | + "axe-core": "^4.1.1", |
66 | 66 | "axobject-query": "^2.2.0",
|
67 | 67 | "damerau-levenshtein": "^1.0.6",
|
68 |
| - "emoji-regex": "^9.0.0", |
| 68 | + "emoji-regex": "^9.2.0", |
69 | 69 | "has": "^1.0.3",
|
70 |
| - "jsx-ast-utils": "^3.1.0", |
71 |
| - "language-tags": "^1.0.5" |
| 70 | + "jsx-ast-utils": "^3.2.0", |
| 71 | + "language-tags": "^1.0.5", |
| 72 | + "minimatch": "^3.0.4" |
72 | 73 | },
|
73 | 74 | "peerDependencies": {
|
74 | 75 | "eslint": "^3 || ^4 || ^5 || ^6 || ^7"
|
75 | 76 | },
|
76 | 77 | "jest": {
|
77 | 78 | "coverageReporters": [
|
78 | 79 | "lcov",
|
| 80 | + "json", |
79 | 81 | "html"
|
80 | 82 | ],
|
81 |
| - "coverageDirectory": "reports", |
| 83 | + "coverageDirectory": "coverage", |
82 | 84 | "roots": [
|
83 | 85 | "__tests__"
|
84 | 86 | ],
|
|
0 commit comments