writr 1.6.7 → 1.7.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 +21 -23
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "writr",
3
- "version": "1.6.7",
3
+ "version": "1.7.1",
4
4
  "description": "A Simple to Use Markdown Blog",
5
5
  "main": "./dist/index",
6
6
  "types": "./dist/index",
@@ -25,13 +25,13 @@
25
25
  ],
26
26
  "scripts": {
27
27
  "watch": "tsc -w -p .",
28
- "clean-all": "yarn clean && rm -rf node_modules && rm -rf coverage",
29
- "clean": "rm -rf ./dist && yarn clean-output",
28
+ "clean-all": "npm run clean && rm -rf node_modules && rm -rf coverage && rm -rf package-lock.json",
29
+ "clean": "rm -rf ./dist && npm run clean-output",
30
30
  "clean-output": "rm -rf ./blog_output",
31
- "compile": "yarn clean && tsc -p .",
32
- "build": "yarn test && yarn compile",
33
- "test": "jest --coverage && yarn clean-output",
34
- "test-output": "yarn compile && node ./bin/writr -p ./blog_example"
31
+ "compile": "npm run clean && tsc -p .",
32
+ "build": "npm run test && npm run compile",
33
+ "test": "npm run clean-output && jest --coverage && npm run clean-output",
34
+ "test-output": "npm run compile && node ./bin/writr -p ./blog_example"
35
35
  },
36
36
  "bin": {
37
37
  "writr": "./bin/writr"
@@ -39,34 +39,32 @@
39
39
  "dependencies": {
40
40
  "array-sort": "^1.0.0",
41
41
  "cheerio": "^1.0.0-rc.10",
42
- "commander": "^8.3.0",
42
+ "commander": "^9.0.0",
43
43
  "del": "^6.0.0",
44
- "ecto": "^1.1.0",
44
+ "ecto": "^1.2.0",
45
45
  "feed": "^4.2.2",
46
46
  "fs-extra": "^10.0.0",
47
47
  "gray-matter": "^4.0.3",
48
48
  "helper-date": "^1.0.1",
49
- "keyv": "^4.0.4",
50
- "luxon": "^2.1.1",
51
- "parse-json": "^6.0.1",
49
+ "keyv": "^4.1.1",
50
+ "luxon": "^2.3.0",
51
+ "parse-json": "^6.0.2",
52
52
  "striptags": "^3.2.0",
53
- "winston": "^3.3.3"
53
+ "winston": "^3.6.0"
54
54
  },
55
55
  "devDependencies": {
56
56
  "@types/array-sort": "^1.0.0",
57
57
  "@types/fs-extra": "^9.0.13",
58
- "@types/jest": "^27.0.2",
58
+ "@types/jest": "^27.4.0",
59
59
  "@types/keyv": "^3.1.3",
60
- "@types/luxon": "^2.0.7",
61
- "@types/node": "^16.11.7",
60
+ "@types/luxon": "^2.0.9",
61
+ "@types/node": "^17.0.18",
62
62
  "@types/parse-json": "^4.0.0",
63
- "@types/winston": "^2.3.8",
64
- "codecov": "^3.8.3",
65
- "jest": "^27.3.1",
66
- "source-map-support": "^0.5.20",
67
- "ts-jest": "^27.0.7",
68
- "ts-node": "^10.4.0",
69
- "typescript": "^4.5.2"
63
+ "jest": "^27.5.1",
64
+ "source-map-support": "^0.5.21",
65
+ "ts-jest": "^27.1.3",
66
+ "ts-node": "^10.5.0",
67
+ "typescript": "^4.5.5"
70
68
  },
71
69
  "files": [
72
70
  "dist",