-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.49 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.49 KB
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
{
"name": "@release-kit/semver",
"version": "0.0.0-set-by-ci",
"description": "Parses a semantic version from a given string or git tag",
"author": "Evgeny Zakharov",
"main": "dist/index.js",
"exports": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist/*"
],
"repository": "git@github.com:release-kit/semver.git",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "rollup -c",
"dev": "pnpm build --watch",
"test": "jest",
"test:watch": "pnpm test --watchAll",
"lint": "eslint \"{src}/**/*.{js,ts}\"",
"lint:fix": "eslint \"{src}/**/*.{js,ts}\" --fix",
"prepare": "husky install"
},
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1",
"@rollup/plugin-node-resolve": "^13.3.0",
"execa": "5",
"semver": "^7.3.7",
"zod": "^3.21.4"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^22.0.0",
"@types/jest": "^27.5.1",
"@types/semver": "^7.3.9",
"esbuild": "^0.14.39",
"eslint": "^8.41.0",
"eslint-kit": "^9.0.9",
"husky": "^8.0.1",
"jest": "^28.1.0",
"jest-serializer-path": "^0.1.15",
"prettier": "^2.8.8",
"rollup": "^2.73.0",
"rollup-plugin-bundle-size": "^1.0.3",
"rollup-plugin-dts": "^4.2.1",
"rollup-plugin-esbuild": "^4.9.1",
"rollup-plugin-node-externals": "^6.0.1",
"rollup-plugin-terser": "^7.0.2",
"ts-jest": "^28.0.2",
"typescript": "^4.6.4"
}
}