@boxyhq/saml-jackson 0.2.3-beta.227 → 0.2.3-beta.228

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2) hide show
  1. package/.eslintrc.js +16 -11
  2. package/package.json +6 -3
package/.eslintrc.js CHANGED
@@ -1,13 +1,18 @@
1
1
  module.exports = {
2
- "env": {
3
- "es2021": true,
4
- "node": true
5
- },
6
- "extends": "eslint:recommended",
7
- "parserOptions": {
8
- "ecmaVersion": 13,
9
- "sourceType": "module"
10
- },
11
- "rules": {
12
- }
2
+ env: {
3
+ es2021: true,
4
+ node: true,
5
+ },
6
+ parserOptions: {
7
+ ecmaVersion: 13,
8
+ sourceType: 'module',
9
+ },
10
+ root: true,
11
+ parser: '@typescript-eslint/parser',
12
+ plugins: ['@typescript-eslint'],
13
+ extends: [
14
+ 'eslint:recommended',
15
+ 'plugin:@typescript-eslint/recommended',
16
+ 'prettier',
17
+ ],
13
18
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@boxyhq/saml-jackson",
3
- "version": "0.2.3-beta.227",
3
+ "version": "0.2.3-beta.228",
4
4
  "license": "Apache 2.0",
5
5
  "description": "SAML 2.0 service",
6
6
  "main": "dist/index.js",
@@ -57,8 +57,11 @@
57
57
  "@types/redis": "4.0.11",
58
58
  "@types/sinon": "10.0.6",
59
59
  "@types/tap": "15.0.5",
60
+ "@typescript-eslint/eslint-plugin": "^5.8.1",
61
+ "@typescript-eslint/parser": "^5.8.1",
60
62
  "cross-env": "7.0.3",
61
- "eslint": "8.5.0",
63
+ "eslint": "^8.5.0",
64
+ "eslint-config-prettier": "^8.3.0",
62
65
  "husky": "7.0.4",
63
66
  "lint-staged": "12.1.4",
64
67
  "nodemon": "2.0.15",
@@ -66,7 +69,7 @@
66
69
  "sinon": "12.0.1",
67
70
  "tap": "15.1.5",
68
71
  "ts-node": "10.4.0",
69
- "typescript": "4.5.4"
72
+ "typescript": "^4.5.4"
70
73
  },
71
74
  "lint-staged": {
72
75
  "*.{js,ts}": "eslint --cache --fix",