|
1 | 1 | { |
2 | 2 | "name": "oc", |
3 | | - "version": "0.49.18", |
| 3 | + "version": "0.49.23", |
4 | 4 | "description": "A framework for developing and distributing html components", |
5 | 5 | "main": "./dist/index.js", |
6 | 6 | "types": "./dist/index.d.ts", |
7 | | - "bin": { |
8 | | - "oc": "./dist/oc-cli.js" |
9 | | - }, |
| 7 | + "bin": "./dist/oc-cli.js", |
10 | 8 | "scripts": { |
11 | 9 | "lint": "eslint src", |
12 | 10 | "prebuild": "rimraf dist", |
13 | 11 | "build": "npm run lint && tsc && node tasks/build.js", |
14 | 12 | "git-stage-and-push": "node tasks/git-stage-and-push.js", |
15 | 13 | "npm-publish": "node tasks/npm-publish.js", |
16 | | - "publish-major": "npm run version-major && npm run test-silent && npm run git-stage-and-push && npm run npm-publish", |
17 | | - "publish-minor": "npm run version-minor && npm run test-silent && npm run git-stage-and-push && npm run npm-publish", |
18 | | - "publish-patch": "npm run version-patch && npm run test-silent && npm run git-stage-and-push && npm run npm-publish", |
| 14 | + "publish-major": "npm run test-silent && npm run version-major && node tasks/build.js && npm run git-stage-and-push && npm run npm-publish", |
| 15 | + "publish-minor": "npm run test-silent && npm run version-minor && node tasks/build.js && npm run git-stage-and-push && npm run npm-publish", |
| 16 | + "publish-patch": "npm run test-silent && npm run version-patch && node tasks/build.js && npm run git-stage-and-push && npm run npm-publish", |
19 | 17 | "test": "npm run build && node tasks/mochaTest.js", |
20 | 18 | "test-silent": "npm run build && node tasks/mochaTest.js --silent", |
21 | 19 | "version-major": "node tasks/version.js --type=\"major\"", |
|
43 | 41 | ], |
44 | 42 | "devDependencies": { |
45 | 43 | "@types/accept-language-parser": "1.5.3", |
46 | | - "@types/async": "3.2.15", |
| 44 | + "@types/async": "3.2.16", |
47 | 45 | "@types/cross-spawn": "6.0.2", |
48 | 46 | "@types/errorhandler": "1.5.0", |
49 | | - "@types/express": "4.17.14", |
| 47 | + "@types/express": "4.17.15", |
50 | 48 | "@types/fs-extra": "9.0.13", |
51 | 49 | "@types/got": "^9.6.12", |
52 | 50 | "@types/livereload": "0.9.2", |
53 | | - "@types/lodash": "4.14.186", |
| 51 | + "@types/lodash": "4.14.191", |
54 | 52 | "@types/morgan": "1.9.3", |
55 | 53 | "@types/multer": "1.4.7", |
56 | | - "@types/node": "18.8.4", |
| 54 | + "@types/node": "18.11.16", |
57 | 55 | "@types/parse-author": "2.0.1", |
58 | 56 | "@types/read": "0.0.29", |
59 | 57 | "@types/response-time": "2.3.5", |
60 | | - "@types/semver": "7.3.12", |
| 58 | + "@types/semver": "7.3.13", |
61 | 59 | "@types/targz": "1.0.1", |
62 | | - "@types/yargs": "17.0.13", |
63 | | - "@typescript-eslint/eslint-plugin": "5.40.0", |
64 | | - "@typescript-eslint/parser": "5.40.0", |
65 | | - "chai": "4.3.6", |
| 60 | + "@types/yargs": "17.0.17", |
| 61 | + "@typescript-eslint/eslint-plugin": "5.46.1", |
| 62 | + "@typescript-eslint/parser": "5.46.1", |
| 63 | + "chai": "4.3.7", |
66 | 64 | "chalk": "4.1.2", |
67 | | - "eslint": "8.25.0", |
| 65 | + "eslint": "8.30.0", |
68 | 66 | "eslint-config-prettier": "8.5.0", |
69 | 67 | "eslint-plugin-prettier": "4.2.1", |
70 | 68 | "glob": "7.2.0", |
71 | | - "husky": "7.0.4", |
| 69 | + "husky": "8.0.2", |
72 | 70 | "injectr": "0.5.1", |
73 | 71 | "minimist": "1.2.7", |
74 | 72 | "mocha": "9.1.3", |
75 | 73 | "node-emoji": "1.11.0", |
76 | 74 | "p-limit": "^3.1.0", |
77 | | - "prettier": "2.7.1", |
| 75 | + "prettier": "2.8.1", |
78 | 76 | "rimraf": "3.0.2", |
79 | 77 | "semver-sort": "1.0.0", |
80 | 78 | "simple-git": "2.48.0", |
81 | 79 | "sinon": "12.0.1", |
82 | 80 | "ts-node": "10.9.1", |
83 | 81 | "type-fest": "2.8.0", |
84 | | - "typescript": "4.8.4" |
| 82 | + "typescript": "4.9.4" |
85 | 83 | }, |
86 | 84 | "dependencies": { |
87 | 85 | "accept-language-parser": "1.5.0", |
|
92 | 90 | "colors": "1.4.0", |
93 | 91 | "cross-spawn": "7.0.3", |
94 | 92 | "dependency-graph": "0.11.0", |
| 93 | + "dotenv": "16.0.3", |
95 | 94 | "errorhandler": "1.5.1", |
96 | 95 | "express": "4.18.2", |
97 | 96 | "form-data": "4.0.0", |
98 | | - "fs-extra": "10.1.0", |
| 97 | + "fs-extra": "11.1.0", |
99 | 98 | "getport": "0.1.0", |
100 | 99 | "got": "11.8.5", |
101 | 100 | "livereload": "0.9.3", |
|
127 | 126 | "targz": "1.0.1", |
128 | 127 | "try-require": "1.2.1", |
129 | 128 | "universalify": "^2.0.0", |
130 | | - "yargs": "17.6.0" |
| 129 | + "yargs": "17.6.2" |
131 | 130 | } |
132 | 131 | } |
0 commit comments