-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.59 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "@tropicalraisel/semver-regexp",
"version": "1.1.5",
"description": "Semantic Version 2.0.0 library powered by Regex.",
"keywords": [
"semver",
"version",
"versions",
"regex",
"regexp",
"match",
"matching",
"semantic"
],
"homepage": "https://github.com/tropicalraisel/semver-regexp#readme",
"bugs": {
"url": "https://github.com/tropicalraisel/semver-regexp/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tropicalraisel/semver-regexp.git"
},
"license": "MIT",
"author": {
"name": "@tropicalraisel",
"url": "https://github.com/tropicalraisel"
},
"exports": {
".": {
"require": "./build/src/index.js",
"import": "./build/src/index.js"
},
"./*": "./*"
},
"main": "build/src/index.js",
"module": "build/src/index.js",
"types": "build/src/index.d.ts",
"files": [
"build/src",
"*.d.ts"
],
"scripts": {
"lint": "gts lint",
"clean": "gts clean",
"compile": "pnpm clean && tsc",
"fix": "gts fix",
"prepare": "pnpm compile",
"pretest": "pnpm compile",
"posttest": "pnpm lint",
"test": "pnpm lint && pnpm compile && jest",
"release": "bumpp --commit --push --tag"
},
"devDependencies": {
"@skypack/package-check": "^0.2.2",
"@types/jest": "^27.0.2",
"@types/node": "^16.9.6",
"bumpp": "^7.1.1",
"gts": "^3.1.0",
"jest": "^27.2.1",
"npm-check-updates": "^11.8.5",
"sort-package-json": "^1.51.0",
"ts-jest": "^27.0.5",
"typescript": "^4.4.3"
},
"publishConfig": {
"access": "public"
}
}