-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 917 Bytes
/
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
{
"name": "release-check",
"version": "1.0.14",
"description": "Check if a push or pull request should trigger a release.",
"main": "dist/index.js",
"scripts": {
"test": "mocha --exit",
"lint": "eslint src/*",
"package": "ncc build src/index.js -o dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/phish108/release-check.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/phish108/release-check/issues"
},
"homepage": "https://github.com/phish108/release-check#readme",
"dependencies": {
"@actions/core": "1.10.0",
"@actions/github": "5.1.1"
},
"devDependencies": {
"@eslint/js": "8.40.0",
"@vercel/ncc": "0.36.0",
"babel-eslint": "10.1.0",
"chai": "4.3.7",
"eslint": "8.40.0",
"eslint-plugin-babel": "5.3.1",
"globals": "13.20.0",
"mocha": "10.2.0"
}
}