@elliemae/browserslist-config-elliemae-latest-browsers 1.3.0 → 1.4.2

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 (2) hide show
  1. package/lib/index.js +2 -2
  2. package/package.json +9 -15
package/lib/index.js CHANGED
@@ -1,8 +1,8 @@
1
1
  module.exports = {
2
2
  development: [
3
- 'Chrome >= 94, Edge >= 96, Safari >= 14.1, Firefox >= 95, iOS >= 14.0, ChromeAndroid >= 96',
3
+ 'Chrome >= 96, Edge >= 96, Safari >= 14.1, Firefox >= 95, iOS >= 14.5, ChromeAndroid >= 97',
4
4
  ],
5
5
  production: [
6
- 'Chrome >= 94, Edge >= 96, Safari >= 14.1, Firefox >= 95, iOS >= 14.0, ChromeAndroid >= 96',
6
+ 'Chrome >= 96, Edge >= 96, Safari >= 14.1, Firefox >= 95, iOS >= 14.5, ChromeAndroid >= 97',
7
7
  ],
8
8
  };
package/package.json CHANGED
@@ -1,15 +1,10 @@
1
1
  {
2
2
  "name": "@elliemae/browserslist-config-elliemae-latest-browsers",
3
- "version": "1.3.0",
3
+ "version": "1.4.2",
4
4
  "private": false,
5
5
  "description": "Browserslist Configuration with latest browsers only",
6
6
  "sideeffects": false,
7
7
  "main": "./lib/index.js",
8
- "exports": {
9
- ".": {
10
- "require": "./lib/index.js"
11
- }
12
- },
13
8
  "files": [
14
9
  "lib"
15
10
  ],
@@ -21,10 +16,10 @@
21
16
  "url": "https://git.elliemae.io/platform-ui/pui-browserslist-config-latest-browsers.git"
22
17
  },
23
18
  "engines": {
24
- "npm": ">=7",
25
- "node": ">=14"
19
+ "pnpm": ">=6",
20
+ "node": ">=16"
26
21
  },
27
- "author": "IMT",
22
+ "author": "ICE MT",
28
23
  "license": "MIT",
29
24
  "scripts": {
30
25
  "build": "exit 0",
@@ -32,19 +27,18 @@
32
27
  "gendoc": "pui-cli gendoc",
33
28
  "lint": "pui-cli lint",
34
29
  "lint:fix": "pui-cli lint --fix",
35
- "lint:staged": "lint-staged",
36
30
  "release": "semantic-release",
37
31
  "start:server": "serve ./dist/public -l 3000",
38
32
  "storybook": "exit 0",
39
33
  "storybook:build": "exit 0",
40
34
  "storybook:prod": "exit 0",
41
- "setup": "rimraf -r node_modules && rimraf package-lock.json && npm i",
42
- "test": "pui-cli test",
35
+ "setup": "rimraf node_modules && rimraf pnpm-lock.yaml && pnpm i",
36
+ "test": "pui-cli test -p",
43
37
  "test:fix": "pui-cli test -f",
44
38
  "test:watch": "pui-cli test -w",
45
39
  "test:staged": "jest --coverage --passWithNoTests --bail --findRelatedTests",
46
40
  "upgrade": "ncu -u && npm run setup",
47
- "prepare": "husky install"
41
+ "prepare": "[ -n \"$CI\" ] || husky install"
48
42
  },
49
43
  "jestSonar": {
50
44
  "sonar56x": true,
@@ -53,8 +47,8 @@
53
47
  "indent": 4
54
48
  },
55
49
  "devDependencies": {
56
- "@elliemae/pui-cli": "~5.26.2",
50
+ "@elliemae/pui-cli": "~6.14.1",
57
51
  "redux-saga": "1.1.3",
58
- "styled-components": "~5.3.3"
52
+ "styled-components": "~5.3.5"
59
53
  }
60
54
  }