-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
36 lines (36 loc) · 1.02 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{
"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": "git+https://github.com/asamuzaK/semverParser.git"
},
"type": "module",
"main": "index.js",
"types": "types/index.d.ts",
"devDependencies": {
"c8": "^10.1.2",
"eslint": "^9.15.0",
"eslint-plugin-import-x": "^4.4.3",
"eslint-plugin-jsdoc": "^50.6.0",
"eslint-plugin-regexp": "^2.7.0",
"globals": "^15.12.0",
"mocha": "^10.8.2",
"neostandard": "^0.11.9",
"typescript": "^5.7.2"
},
"overrides": {
"glob": "^10.4.5"
},
"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.7"
}