is-what 4.1.3 → 4.1.4

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