-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.09 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
{
"name": "version-selector-type",
"version": "3.0.0",
"description": "Returns the type and normalized version of a version selector",
"main": "index.js",
"typings": "index.d.ts",
"files": [
"index.js",
"index.d.ts"
],
"engines": {
"node": ">=10.13"
},
"scripts": {
"test": "preview && node test",
"md": "mos"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pnpm/version-selector-type.git"
},
"keywords": [
"semver",
"version",
"range",
"tag",
"dist-tag",
"selector"
],
"author": "Zoltan Kochan <[email protected]> (https://www.kochan.io/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/pnpm/version-selector-type/issues"
},
"homepage": "https://github.com/pnpm/version-selector-type#readme",
"devDependencies": {
"mos": "^2.0.0-alpha.3",
"mos-plugin-readme": "^1.0.4",
"package-preview": "^4.0.0",
"tape": "^5.0.0"
},
"mos": {
"plugins": [
"readme"
],
"installation": {
"useShortAlias": true
}
},
"dependencies": {
"semver": "^7.3.2"
}
}