Files
documentation/node_modules/semver-diff/package.json
2024-03-22 03:47:51 +05:30

41 lines
749 B
JSON

{
"name": "semver-diff",
"version": "4.0.0",
"description": "Get the diff type of two semver versions: 0.0.1 0.0.2 → patch",
"license": "MIT",
"repository": "sindresorhus/semver-diff",
"funding": "https://github.com/sponsors/sindresorhus",
"author": {
"name": "Sindre Sorhus",
"email": "sindresorhus@gmail.com",
"url": "https://sindresorhus.com"
},
"type": "module",
"exports": "./index.js",
"engines": {
"node": ">=12"
},
"scripts": {
"test": "xo && ava && tsd"
},
"files": [
"index.js",
"index.d.ts"
],
"keywords": [
"semver",
"version",
"semantic",
"diff",
"difference"
],
"dependencies": {
"semver": "^7.3.5"
},
"devDependencies": {
"ava": "^3.15.0",
"tsd": "^0.14.0",
"xo": "^0.39.1"
}
}