is-what 4.1.13 → 4.1.15-3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (1) hide show
  1. package/package.json +14 -9
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "is-what",
3
- "version": "4.1.13",
3
+ "version": "4.1.15-3",
4
4
  "description": "JS type check (TypeScript supported) functions like `isPlainObject() isArray()` etc. A simple & small integration.",
5
5
  "type": "module",
6
6
  "sideEffects": false,
@@ -68,17 +68,18 @@
68
68
  "@typescript-eslint/eslint-plugin": "^5.59.6",
69
69
  "@typescript-eslint/parser": "^5.59.6",
70
70
  "del-cli": "^5.0.0",
71
- "eslint": "^8.41.0",
72
71
  "eslint-config-prettier": "^8.8.0",
73
72
  "eslint-plugin-tree-shaking": "^1.10.0",
74
- "np": "^7.7.0",
73
+ "eslint": "^8.41.0",
74
+ "np": "^8.0.2",
75
+ "prettier-plugin-jsdoc": "^0.4.2",
75
76
  "prettier": "^2.8.8",
76
- "rollup": "^3.22.0",
77
77
  "rollup-plugin-dts": "^5.3.0",
78
78
  "rollup-plugin-esbuild": "^5.0.0",
79
+ "rollup": "^3.22.0",
80
+ "typedoc": "^0.24.7",
79
81
  "typescript": "^5.0.4",
80
- "vitest": "^0.31.1",
81
- "typedoc": "^0.24.7"
82
+ "vitest": "^0.31.1"
82
83
  },
83
84
  "ava": {
84
85
  "extensions": {
@@ -89,8 +90,9 @@
89
90
  ]
90
91
  },
91
92
  "np": {
92
- "yarn": false,
93
- "branch": "production"
93
+ "branch": "production",
94
+ "publish": false,
95
+ "yarn": false
94
96
  },
95
97
  "eslintConfig": {
96
98
  "ignorePatterns": [
@@ -126,6 +128,9 @@
126
128
  "trailingComma": "es5",
127
129
  "semi": false,
128
130
  "bracketSpacing": true,
129
- "quoteProps": "consistent"
131
+ "quoteProps": "consistent",
132
+ "plugins": [
133
+ "prettier-plugin-jsdoc"
134
+ ]
130
135
  }
131
136
  }