is-what 4.1.2 → 4.1.6

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 +3 -4
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "is-what",
3
3
  "sideEffects": false,
4
4
  "type": "module",
5
- "version": "4.1.2",
5
+ "version": "4.1.6",
6
6
  "description": "JS type check (TypeScript supported) functions like `isPlainObject() isArray()` etc. A simple & small integration.",
7
7
  "module": "./dist/index.es.js",
8
8
  "main": "./dist/index.cjs",
@@ -18,12 +18,11 @@
18
18
  "dist"
19
19
  ],
20
20
  "engines": {
21
- "node": ">=12.13",
22
- "npm": ">=7"
21
+ "node": ">=12.13"
23
22
  },
24
23
  "scripts": {
25
24
  "test": "vitest run",
26
- "lint": "tsc --noEmit ./src/index.ts && eslint ./src --ext .ts",
25
+ "lint": "tsc --noEmit && eslint ./src --ext .ts",
27
26
  "build": "rollup -c ./scripts/build.js",
28
27
  "release": "npm run lint && del dist && npm run build && np"
29
28
  },