@aiou/eslint-ignore 0.1.2 → 0.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1) hide show
  1. package/package.json +13 -12
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aiou/eslint-ignore",
3
- "version": "0.1.2",
3
+ "version": "0.2.0",
4
4
  "description": "collection of eslint ignore patterns",
5
5
  "keywords": [
6
6
  "eslint",
@@ -18,33 +18,34 @@
18
18
  "email": "jiangweixian1994@gmail.com"
19
19
  },
20
20
  "author": "JW <jiangweixian1994@gmail.com> (https://twitter.com/jiangweixian)",
21
+ "main": "index.js",
22
+ "typings": "index.d.ts",
21
23
  "files": [
22
24
  "index.js",
23
25
  "index.d.ts"
24
26
  ],
25
- "main": "index.js",
26
- "typings": "index.d.ts",
27
27
  "lint-staged": {
28
28
  "**/**/*.{js,ts,vue,json}": [
29
29
  "eslint --fix"
30
30
  ]
31
31
  },
32
32
  "devDependencies": {
33
- "@types/jest": "26.0.23",
33
+ "@types/jest": "27.4.0",
34
34
  "@types/strip-comments": "^2.0.1",
35
- "axios": "^0.21.1",
36
- "jest": "27.0.6",
37
- "lint-staged": "^11.0.1",
38
- "npm-watch": "0.10.0",
35
+ "axios": "^0.24.0",
36
+ "jest": "27.4.7",
37
+ "lint-staged": "^12.1.5",
38
+ "npm-watch": "0.11.0",
39
39
  "rimraf": "3.0.2",
40
40
  "strip-comments": "^2.0.1",
41
- "ts-jest": "27.0.3",
42
- "ts-node": "10.0.0",
41
+ "ts-jest": "27.1.2",
42
+ "ts-node": "10.4.0",
43
43
  "tslib": "^2.3.1",
44
- "typescript": "^4.3.5"
44
+ "typescript": "^4.5.4"
45
45
  },
46
46
  "scripts": {
47
47
  "build": "ts-node ./src/index.ts",
48
48
  "test": "jest"
49
- }
49
+ },
50
+ "readme": "# @aiou/eslint-ignore\n*collection of eslint common ignore patterns with [gitignore](https://github.com/github/gitignore)*\n\n\n[![npm](https://img.shields.io/npm/v/@aiou/eslint-ignore)](https://www.npmjs.com/package/@aiou/eslint-ignore) [![GitHub](https://img.shields.io/npm/l/@aiou/eslint-ignore)](https://github.com/JiangWeixian/eslint-config/tree/master/packages/ignore) \n\nTransform [nodejs's gitignore](https://github.com/github/gitignore/blob/master/Node.gitignore) into eslint **ignorePatterns**, and with common eslint ignore patterns like `jest`, etc..\n\n## install\n\n```console\nnpm install @aiou/eslint-ignore --save-dev\n```\n\n## usage\n\n```js\nmodule.exports = {\n // others config\n ignorePatterns: require('@aiou/eslint-ignore'),\n}\n```"
50
51
  }