wip(parse-version): initial test of parse_version input

This commit is contained in:
2023-05-19 21:50:30 +01:00
parent e58fa0f2f8
commit 77c38f4b74
12 changed files with 699 additions and 710 deletions

View File

@@ -4,10 +4,11 @@
"main": "dist/index.js",
"scripts": {
"build": "npm run dist && npm run update-readme",
"dist": "ncc build index.js --source-map --minify --license licenses.txt",
"dist": "ncc build index.js --minify --license licenses.txt",
"lint": "eslint *.js",
"format": "eslint --fix *.js",
"update-readme": "action-docs --update-readme && prettier -w README.md"
"update-readme": "action-docs --update-readme && prettier -w README.md",
"test": "jest"
},
"devDependencies": {
"@vercel/ncc": "^0.36.1",
@@ -16,7 +17,11 @@
"eslint": "^8.40.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"handlebars": "^4.7.7",
"jest": "^29.5.0",
"nock": "^13.3.1",
"prettier": "^2.8.8",
"semver": "^7.5.1",
"ts-jest": "^29.1.0",
"typescript": "^5.0.4"
},