web-folder added

This commit is contained in:
Miisa Ekholm
2022-10-13 17:45:33 +03:00
parent 2dd4d78bc2
commit 52370df9ce
778 changed files with 98510 additions and 0 deletions

View File

@@ -0,0 +1,34 @@
{
"name": "semver",
"version": "7.0.0",
"description": "The semantic version parser used by npm.",
"main": "index.js",
"scripts": {
"test": "tap",
"snap": "tap",
"preversion": "npm test",
"postversion": "npm publish",
"postpublish": "git push origin --follow-tags"
},
"devDependencies": {
"tap": "^14.10.1"
},
"license": "ISC",
"repository": "https://github.com/npm/node-semver",
"bin": {
"semver": "./bin/semver.js"
},
"files": [
"bin",
"range.bnf",
"classes",
"functions",
"internal",
"ranges",
"index.js"
],
"tap": {
"check-coverage": true,
"coverage-map": "map.js"
}
}