flat-cache 3.1.0 → 3.1.1

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 (1) hide show
  1. package/package.json +5 -30
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "flat-cache",
3
- "version": "3.1.0",
3
+ "version": "3.1.1",
4
4
  "description": "A stupidly simple key/value storage using files to persist some data",
5
5
  "repository": "jaredwray/flat-cache",
6
6
  "license": "MIT",
@@ -29,19 +29,9 @@
29
29
  "autofix": "npm run eslint-fix",
30
30
  "check": "npm run eslint",
31
31
  "verify": "npm run eslint && npm run test:cache",
32
- "install-hooks": "prepush install && changelogx install-hook && precommit install",
33
- "changelog": "changelogx -f markdown -o ./changelog.md",
34
- "do-changelog": "npm run changelog && git add ./changelog.md && git commit -m 'DOC: Generate changelog' --no-verify",
35
- "pre-v": "npm run verify",
36
- "post-v": "npm run do-changelog && git push --no-verify && git push --tags --no-verify",
37
- "bump-major": "npm run pre-v && npm version major -m 'BLD: Release v%s' && npm run post-v",
38
- "bump-minor": "npm run pre-v && npm version minor -m 'BLD: Release v%s' && npm run post-v",
39
- "bump-patch": "npm run pre-v && npm version patch -m 'BLD: Release v%s' && npm run post-v",
40
32
  "test:cache": "c8 mocha -R spec test/specs",
41
33
  "test:ci:cache": "c8 --reporter=lcov mocha -R spec test/specs",
42
- "test": "npm run verify --silent",
43
- "cover": "istanbul cover test/runner.js html text-summary",
44
- "watch": "watch-run -i -p 'test/specs/**/*.js' istanbul cover test/runner.js html text-summary"
34
+ "test": "npm run verify --silent"
45
35
  },
46
36
  "keywords": [
47
37
  "json cache",
@@ -51,35 +41,20 @@
51
41
  "key value",
52
42
  "cache"
53
43
  ],
54
- "changelogx": {
55
- "ignoreRegExp": [
56
- "BLD: Release",
57
- "DOC: Generate Changelog",
58
- "Generated Changelog"
59
- ],
60
- "issueIDRegExp": "#(\\d+)",
61
- "commitURL": "https://github.com/royriojas/flat-cache/commit/{0}",
62
- "authorURL": "https://github.com/{0}",
63
- "issueIDURL": "https://github.com/royriojas/flat-cache/issues/{0}",
64
- "projectName": "flat-cache"
65
- },
66
44
  "devDependencies": {
67
45
  "c8": "^8.0.1",
68
- "chai": "^4.3.7",
69
- "changelogx": "^5.0.6",
46
+ "chai": "^4.3.10",
70
47
  "eslint": "^7.13.0",
71
48
  "eslint-config-prettier": "^6.15.0",
72
49
  "eslint-plugin-mocha": "^8.0.0",
73
50
  "eslint-plugin-prettier": "^3.1.4",
74
51
  "glob-expand": "^0.2.1",
75
52
  "mocha": "^10.2.0",
76
- "precommit": "^1.2.2",
77
- "prepush": "^3.1.11",
78
53
  "prettier": "^2.1.2",
79
- "watch-run": "^1.2.5"
54
+ "write": "^2.0.0"
80
55
  },
81
56
  "dependencies": {
82
- "flatted": "^3.2.7",
57
+ "flatted": "^3.2.9",
83
58
  "keyv": "^4.5.3",
84
59
  "rimraf": "^3.0.2"
85
60
  }