-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.24 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "major-version-check",
"version": "1.4.1",
"description": "A small module to check if two specified version numbers are major changes",
"type": "commonjs",
"main": "./lib/cjs/index.js",
"exports": {
".": {
"require": "./lib/cjs/index.js",
"default": "./lib/esm/index.mjs"
}
},
"module": "./lib/esm/index.mjs",
"types": "./types/index.d.ts",
"scripts": {
"test": "node ./test/index.test.js",
"demo": "echo https://runkit.com/embed/lwken7n6k71q && exit 1",
"lint": "eslint .",
"fix": "eslint . --fix"
},
"keywords": [
"major",
"version",
"version check",
"version-tools",
"major-version-check",
"parser",
"semver",
"version-parser",
"first-package",
"javascript",
"typescript"
],
"bugs": {
"url": "https://github.com/KK-Designs/version-tools/issues",
"email": "kkart2007@gmail.com"
},
"homepage": "https://github.com/KK-Designs/version-tools#readme",
"author": "NotBacon",
"license": "CC0-1.0",
"repository": {
"type": "git",
"url": "https://github.com/KK-Designs/version-tools"
},
"engines": {
"node": ">=14.0.0"
},
"devDependencies": {
"eslint": "^8.7.0"
},
"dependencies": {
"meant": "^2.0.1"
}
}