37 lines
1.1 KiB
JSON
37 lines
1.1 KiB
JSON
{
|
|
"name": "semver-parser",
|
|
"description": "SemVer parser. parse, verify, compare SemVer.",
|
|
"author": "asamuzaK",
|
|
"license": "MIT",
|
|
"homepage": "https://github.com/asamuzaK/semverParser",
|
|
"bugs": "https://github.com/asamuzaK/semverParser/issues",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/asamuzaK/semverParser.git"
|
|
},
|
|
"type": "module",
|
|
"main": "index.js",
|
|
"types": "types/index.d.ts",
|
|
"devDependencies": {
|
|
"c8": "^7.13.0",
|
|
"chai": "^4.3.7",
|
|
"eslint": "^8.38.0",
|
|
"eslint-config-standard": "^17.0.0",
|
|
"eslint-plugin-import": "^2.27.5",
|
|
"eslint-plugin-jsdoc": "^43.0.6",
|
|
"eslint-plugin-n": "^15.7.0",
|
|
"eslint-plugin-node": "^11.1.0",
|
|
"eslint-plugin-promise": "^6.1.1",
|
|
"eslint-plugin-regexp": "^1.14.0",
|
|
"mocha": "^10.2.0",
|
|
"typescript": "^5.0.4"
|
|
},
|
|
"scripts": {
|
|
"build": "npm run tsc && npm run lint && npm run test",
|
|
"lint": "eslint --fix .",
|
|
"test": "c8 --reporter=text mocha --exit test",
|
|
"tsc": "node -e \"fs.rmSync('types',{recursive:true,force:true})\" && npx tsc"
|
|
},
|
|
"version": "4.1.4"
|
|
}
|