You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
559 B
28 lines
559 B
{ |
|
"name": "semver", |
|
"version": "6.3.0", |
|
"description": "The semantic version parser used by npm.", |
|
"main": "semver.js", |
|
"scripts": { |
|
"test": "tap", |
|
"preversion": "npm test", |
|
"postversion": "npm publish", |
|
"postpublish": "git push origin --follow-tags" |
|
}, |
|
"devDependencies": { |
|
"tap": "^14.3.1" |
|
}, |
|
"license": "ISC", |
|
"repository": "https://github.com/npm/node-semver", |
|
"bin": { |
|
"semver": "./bin/semver.js" |
|
}, |
|
"files": [ |
|
"bin", |
|
"range.bnf", |
|
"semver.js" |
|
], |
|
"tap": { |
|
"check-coverage": true |
|
} |
|
}
|
|
|