forked from nitzano/semantic-release-github-milestones
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 1.99 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
{
"name": "semantic-release-github-milestones",
"version": "0.0.0-development",
"main": "build/index.js",
"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": ">=16.0.0"
},
"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": "^3.0.0",
"aggregate-error": "^4.0.0",
"debug": "^4.3.2",
"git-url-parse": "^11.6.0",
"lodash": "^4.17.21",
"node-emoji": "^1.11.0"
},
"scripts": {
"clean": "rimraf build",
"prebuild": "yarn clean",
"build": "tsc",
"release": "semantic-release",
"prepare": "husky install",
"test": "nyc ava",
"test:watch": "yarn test --watch",
"lint": "xo"
},
"devDependencies": {
"@types/debug": "^4.1.7",
"@types/git-url-parse": "^9.0.1",
"@types/lodash": "^4.14.175",
"@types/node": "^16.10.3",
"@types/semantic-release": "^17.2.2",
"ava": "^3.15.0",
"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": "18.0.0",
"sinon": "^11.1.2",
"ts-node": "^10.2.1",
"typescript": "^4.4.3",
"xo": "^0.45.0"
},
"peerDependencies": {
"semantic-release": ">=18.0.0"
},
"xo": {
"prettier": true,
"space": true,
"rules": {
"unicorn/prefer-node-protocol": "off",
"@typescript-eslint/no-unsafe-call": "off"
}
},
"lint-staged": {
"*.{js,css,md,ts}": "xo --fix"
},
"ava": {
"extensions": [
"ts"
],
"require": [
"ts-node/register"
]
}
}