Files
codeql-action/node_modules/semver/package.json
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

79 lines
1.6 KiB
JSON
Raw Normal View History

{
2020-06-18 18:43:30 +02:00
"name": "semver",
2025-02-10 17:23:18 +00:00
"version": "7.7.1",
"description": "The semantic version parser used by npm.",
2020-06-18 18:43:30 +02:00
"main": "index.js",
"scripts": {
"test": "tap",
"snap": "tap",
2025-02-03 17:20:53 +00:00
"lint": "npm run eslint",
2023-01-18 20:00:33 +00:00
"postlint": "template-oss-check",
2025-02-03 17:20:53 +00:00
"lintfix": "npm run eslint -- --fix",
2023-01-18 20:00:33 +00:00
"posttest": "npm run lint",
2025-02-03 17:20:53 +00:00
"template-oss-apply": "template-oss-apply --force",
"eslint": "eslint \"**/*.{js,cjs,ts,mjs,jsx,tsx}\""
2020-06-18 18:43:30 +02:00
},
"devDependencies": {
2025-02-03 17:20:53 +00:00
"@npmcli/eslint-config": "^5.0.0",
"@npmcli/template-oss": "4.23.4",
2024-05-15 09:38:11 +00:00
"benchmark": "^2.1.4",
2023-01-18 20:00:33 +00:00
"tap": "^16.0.0"
},
2020-06-18 18:43:30 +02:00
"license": "ISC",
2023-01-18 20:00:33 +00:00
"repository": {
"type": "git",
2024-05-15 09:38:11 +00:00
"url": "git+https://github.com/npm/node-semver.git"
2023-01-18 20:00:33 +00:00
},
2020-06-18 18:43:30 +02:00
"bin": {
2021-07-27 16:54:26 +00:00
"semver": "bin/semver.js"
},
"files": [
2023-01-18 20:00:33 +00:00
"bin/",
"lib/",
"classes/",
"functions/",
"internal/",
"ranges/",
"index.js",
2023-01-18 20:00:33 +00:00
"preload.js",
"range.bnf"
],
"tap": {
2023-07-03 07:45:09 +00:00
"timeout": 30,
2023-01-18 20:00:33 +00:00
"coverage-map": "map.js",
"nyc-arg": [
"--exclude",
"tap-snapshots/**"
]
},
2020-06-18 18:43:30 +02:00
"engines": {
"node": ">=10"
2021-07-27 16:54:26 +00:00
},
2023-01-18 20:00:33 +00:00
"author": "GitHub Inc.",
"templateOSS": {
"//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.",
2025-02-03 17:20:53 +00:00
"version": "4.23.4",
2023-01-18 20:00:33 +00:00
"engines": ">=10",
"distPaths": [
"classes/",
"functions/",
"internal/",
"ranges/",
"index.js",
"preload.js",
"range.bnf"
],
"allowPaths": [
"/classes/",
"/functions/",
"/internal/",
"/ranges/",
"/index.js",
"/preload.js",
2024-05-15 09:38:11 +00:00
"/range.bnf",
"/benchmarks"
2023-07-03 07:45:09 +00:00
],
"publish": "true"
2020-06-18 18:43:30 +02:00
}
2022-02-24 17:03:29 +00:00
}