bigotillo 0.0.7 → 0.0.10

Sign up to get free protection for your applications and to get access to all the features.
package/.eslintrc.json CHANGED
@@ -3,20 +3,18 @@
3
3
  "browser": true,
4
4
  "es6": true,
5
5
  "node": true,
6
- "mocha": true,
7
- "jasmine": true,
8
6
  "jest": true
9
7
  },
10
8
  "extends": "eslint:recommended",
11
9
  "parserOptions": {
12
- "ecmaVersion": 8,
10
+ "ecmaVersion": 2020,
13
11
  "sourceType": "module"
14
12
  },
15
13
  "rules": {
16
14
  "indent": [
17
15
  "error",
18
16
  "tab",
19
- {"SwitchCase": 1}
17
+ { "SwitchCase": 1 }
20
18
  ],
21
19
  "linebreak-style": [
22
20
  "error",
@@ -34,13 +32,15 @@
34
32
  "no-alert": "warn",
35
33
  "no-unused-vars": "warn",
36
34
  "keyword-spacing": ["error", { "before": true, "after": true }],
37
- "space-infix-ops": ["error", {"int32Hint": false}],
35
+ "space-infix-ops": ["error", { "int32Hint": false }],
38
36
  "comma-spacing": ["error"],
39
37
  "arrow-spacing": ["error"],
40
38
  "semi-spacing": ["error"],
41
39
  "space-before-function-paren": ["error"],
42
40
  "no-multi-spaces": "error",
43
41
  "no-magic-numbers": ["warn", { "ignoreArrayIndexes": true }],
44
- "valid-typeof": "error"
42
+ "valid-typeof": "error",
43
+ "object-curly-spacing": ["error", "always"],
44
+ "curly": "error"
45
45
  }
46
46
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bigotillo",
3
- "version": "0.0.7",
3
+ "version": "0.0.10",
4
4
  "description": "A NPM package just for the lol",
5
5
  "bin": {
6
6
  "bigotillo": "./bin/index.js"
@@ -20,13 +20,13 @@
20
20
  },
21
21
  "license": "MIT",
22
22
  "dependencies": {
23
- "colorette": "^2.0.16"
23
+ "colorette": "^2.0.19"
24
24
  },
25
25
  "devDependencies": {
26
- "@commitlint/cli": "^15.0.0",
27
- "@commitlint/config-conventional": "^15.0.0",
28
- "eslint": "^8.4.1",
29
- "husky": "^7.0.4",
30
- "nodemon": "^2.0.15"
26
+ "@commitlint/cli": "^17.1.2",
27
+ "@commitlint/config-conventional": "^17.1.0",
28
+ "eslint": "^8.26.0",
29
+ "husky": "^8.0.1",
30
+ "nodemon": "^2.0.20"
31
31
  }
32
32
  }
package/.husky/commit-msg DELETED
@@ -1,4 +0,0 @@
1
- #!/bin/sh
2
- . "$(dirname "$0")/_/husky.sh"
3
-
4
- npx --no -- commitlint --edit $1
package/.husky/pre-commit DELETED
@@ -1,4 +0,0 @@
1
- #!/bin/sh
2
- . "$(dirname "$0")/_/husky.sh"
3
-
4
- npm run lint