-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
89 lines (89 loc) · 2.21 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "semantic-release-github-milestones",
"version": "0.0.0-development",
"type": "module",
"exports": "./build/index.js",
"types": "./build/index.d.ts",
"repository": "git@github.com:nitzano/semantic-release-github-milestones.git",
"author": "Nitzan Ohana <16689354+nitzano@users.noreply.github.com>",
"bugs": {
"url": "https://github.com/nitzano/semantic-release-github-milestones/issues"
},
"engines": {
"node": "^18.17 || >=20"
},
"files": [
"build"
],
"keywords": [
"git",
"github",
"milestone",
"notifications",
"publish",
"release",
"semantic-release",
"version"
],
"license": "MIT",
"dependencies": {
"@octokit/plugin-throttling": "^3.5.2",
"@octokit/rest": "^18.12.0",
"@semantic-release/error": "^4.0.0",
"aggregate-error": "^4.0.0",
"debug": "^4.3.2",
"git-url-parse": "^11.6.0",
"lodash": "^4.17.21",
"node-emoji": "^2.1.3"
},
"scripts": {
"clean": "rimraf build",
"prebuild": "yarn clean",
"build": "tsc",
"release": "semantic-release",
"format": "xo --fix",
"prepare": "husky install",
"test": "echo ok",
"test:watch": "yarn test --watch",
"lint": "xo"
},
"devDependencies": {
"@tsconfig/node20": "^20.1.2",
"@tsconfig/strictest": "^2.0.2",
"@types/debug": "^4.1.7",
"@types/esm": "^3",
"@types/git-url-parse": "^9.0.1",
"@types/lodash": "^4.14.175",
"@types/node": "^16.10.3",
"@types/semantic-release__error": "^3.0.3",
"ava": "^6.0.1",
"faker": "^5.5.3",
"husky": "^7.0.2",
"lint-staged": "^11.2.3",
"nock": "^13.1.3",
"nyc": "^15.1.0",
"rimraf": "^3.0.2",
"semantic-release": "^22.0.0",
"sinon": "^11.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.3.3",
"xo": "^0.56.0"
},
"peerDependencies": {
"semantic-release": ">=22.0.0"
},
"xo": {
"prettier": true,
"space": true,
"rules": {
"@typescript-eslint/no-unsafe-call": "off",
"@typescript-eslint/no-unsafe-assignment": "off",
"@typescript-eslint/ban-types": "off",
"ava/no-ignored-test-files": "off"
}
},
"lint-staged": {
"*.{js,css,md,ts}": "xo --fix"
},
"packageManager": "yarn@4.0.2"
}